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

Public Member Functions

String getEntityPath ()
 
void setEntityPath (String entityPath)
 
String getContactId ()
 
void setContactId (String contactId)
 
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 SendableAssistantPK.java.

Member Function Documentation

◆ equals()

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

Definition at line 58 of file SendableAssistantPK.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 SendableAssistantPK other = (SendableAssistantPK) obj;
69  if (!Objects.equals(this.entityPath, other.entityPath)) {
70  return false;
71  }
72  if (!Objects.equals(this.contactId, other.contactId)) {
73  return false;
74  }
75  return true;
76  }

◆ getContactId()

String org.turro.elephant.entities.db.SendableAssistantPK.getContactId ( )

Definition at line 41 of file SendableAssistantPK.java.

41  {
42  return contactId;
43  }

◆ getEntityPath()

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

Definition at line 33 of file SendableAssistantPK.java.

33  {
34  return entityPath;
35  }

◆ hashCode()

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

Definition at line 50 of file SendableAssistantPK.java.

50  {
51  int hash = 7;
52  hash = 89 * hash + Objects.hashCode(this.entityPath);
53  hash = 89 * hash + Objects.hashCode(this.contactId);
54  return hash;
55  }

◆ setContactId()

void org.turro.elephant.entities.db.SendableAssistantPK.setContactId ( String  contactId)

Definition at line 45 of file SendableAssistantPK.java.

45  {
46  this.contactId = contactId;
47  }

◆ setEntityPath()

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

Definition at line 37 of file SendableAssistantPK.java.

37  {
38  this.entityPath = entityPath;
39  }

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