BrightSide Workbench Full Report + Source Code
All Classes Namespaces Files Functions Variables Pages
org.turro.elephant.entities.db.SkillPK Class Reference
Inheritance diagram for org.turro.elephant.entities.db.SkillPK:
Collaboration diagram for org.turro.elephant.entities.db.SkillPK:

Public Member Functions

String getSkill ()
 
void setSkill (String skill)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
int hashCode ()
 
boolean equals (Object obj)
 

Detailed Description

Author
Lluis Turró Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 28 of file SkillPK.java.

Member Function Documentation

◆ equals()

boolean org.turro.elephant.entities.db.SkillPK.equals ( Object  obj)

Definition at line 58 of file SkillPK.java.

58  {
59  if (this == obj) {
60  return true;
61  }
62  if (obj == null) {
63  return false;
64  }
65  if (getClass() != obj.getClass()) {
66  return false;
67  }
68  final SkillPK other = (SkillPK) obj;
69  if (!Objects.equals(this.skill, other.skill)) {
70  return false;
71  }
72  if (!Objects.equals(this.entityPath, other.entityPath)) {
73  return false;
74  }
75  return true;
76  }

◆ getEntityPath()

String org.turro.elephant.entities.db.SkillPK.getEntityPath ( )

Definition at line 41 of file SkillPK.java.

41  {
42  return entityPath;
43  }

◆ getSkill()

String org.turro.elephant.entities.db.SkillPK.getSkill ( )

Definition at line 33 of file SkillPK.java.

33  {
34  return skill;
35  }

◆ hashCode()

int org.turro.elephant.entities.db.SkillPK.hashCode ( )

Definition at line 50 of file SkillPK.java.

50  {
51  int hash = 3;
52  hash = 97 * hash + Objects.hashCode(this.skill);
53  hash = 97 * hash + Objects.hashCode(this.entityPath);
54  return hash;
55  }

◆ setEntityPath()

void org.turro.elephant.entities.db.SkillPK.setEntityPath ( String  entityPath)

Definition at line 45 of file SkillPK.java.

45  {
46  this.entityPath = entityPath;
47  }

◆ setSkill()

void org.turro.elephant.entities.db.SkillPK.setSkill ( String  skill)

Definition at line 37 of file SkillPK.java.

37  {
38  this.skill = skill;
39  }

The documentation for this class was generated from the following file: