BrightSide Workbench Full Report + Source Code
org.turro.elephant.entities.db.ActivityPK Class Reference
Inheritance diagram for org.turro.elephant.entities.db.ActivityPK:
Collaboration diagram for org.turro.elephant.entities.db.ActivityPK:

Public Member Functions

Date getActivityDate ()
 
void setActivityDate (Date activityDate)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
String getActivityPath ()
 
void setActivityPath (String activityPath)
 
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 29 of file ActivityPK.java.

Member Function Documentation

◆ equals()

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

Definition at line 70 of file ActivityPK.java.

70  {
71  if (this == obj) {
72  return true;
73  }
74  if (obj == null) {
75  return false;
76  }
77  if (getClass() != obj.getClass()) {
78  return false;
79  }
80  final ActivityPK other = (ActivityPK) obj;
81  if (!Objects.equals(this.entityPath, other.entityPath)) {
82  return false;
83  }
84  if (!Objects.equals(this.activityPath, other.activityPath)) {
85  return false;
86  }
87  return Objects.equals(this.activityDate, other.activityDate);
88  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getActivityDate()

Date org.turro.elephant.entities.db.ActivityPK.getActivityDate ( )

Definition at line 36 of file ActivityPK.java.

36  {
37  return activityDate;
38  }

◆ getActivityPath()

String org.turro.elephant.entities.db.ActivityPK.getActivityPath ( )

Definition at line 52 of file ActivityPK.java.

52  {
53  return activityPath;
54  }

◆ getEntityPath()

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

Definition at line 44 of file ActivityPK.java.

44  {
45  return entityPath;
46  }

◆ hashCode()

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

Definition at line 61 of file ActivityPK.java.

61  {
62  int hash = 7;
63  hash = 37 * hash + Objects.hashCode(this.activityDate);
64  hash = 37 * hash + Objects.hashCode(this.entityPath);
65  hash = 37 * hash + Objects.hashCode(this.activityPath);
66  return hash;
67  }

◆ setActivityDate()

void org.turro.elephant.entities.db.ActivityPK.setActivityDate ( Date  activityDate)

Definition at line 40 of file ActivityPK.java.

40  {
41  this.activityDate = activityDate;
42  }

◆ setActivityPath()

void org.turro.elephant.entities.db.ActivityPK.setActivityPath ( String  activityPath)

Definition at line 56 of file ActivityPK.java.

56  {
57  this.activityPath = activityPath;
58  }

◆ setEntityPath()

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

Definition at line 48 of file ActivityPK.java.

48  {
49  this.entityPath = entityPath;
50  }

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