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

Public Member Functions

String getServerDomain ()
 
void setServerDomain (String serverDomain)
 
String getProjectId ()
 
void setProjectId (String projectId)
 
int hashCode ()
 
boolean equals (Object obj)
 

Static Public Member Functions

static AxProjectCategoryPK from (AxProjectCategory pc)
 

Detailed Description

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

Definition at line 28 of file AxProjectCategoryPK.java.

Member Function Documentation

◆ equals()

boolean org.turro.member.db.entities.AxProjectCategoryPK.equals ( Object  obj)

Definition at line 58 of file AxProjectCategoryPK.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 AxProjectCategoryPK other = (AxProjectCategoryPK) obj;
69  if (!Objects.equals(this.serverDomain, other.serverDomain)) {
70  return false;
71  }
72  return Objects.equals(this.projectId, other.projectId);
73  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ from()

static AxProjectCategoryPK org.turro.member.db.entities.AxProjectCategoryPK.from ( AxProjectCategory  pc)
static

Definition at line 75 of file AxProjectCategoryPK.java.

75  {
76  AxProjectCategoryPK pk = new AxProjectCategoryPK();
77  pk.setServerDomain(pc.getServerDomain());
78  pk.setProjectId(pc.getProjectId());
79  return pk;
80  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getProjectId()

String org.turro.member.db.entities.AxProjectCategoryPK.getProjectId ( )

Definition at line 41 of file AxProjectCategoryPK.java.

41  {
42  return projectId;
43  }

◆ getServerDomain()

String org.turro.member.db.entities.AxProjectCategoryPK.getServerDomain ( )

Definition at line 33 of file AxProjectCategoryPK.java.

33  {
34  return serverDomain;
35  }

◆ hashCode()

int org.turro.member.db.entities.AxProjectCategoryPK.hashCode ( )

Definition at line 50 of file AxProjectCategoryPK.java.

50  {
51  int hash = 7;
52  hash = 79 * hash + Objects.hashCode(this.serverDomain);
53  hash = 79 * hash + Objects.hashCode(this.projectId);
54  return hash;
55  }

◆ setProjectId()

void org.turro.member.db.entities.AxProjectCategoryPK.setProjectId ( String  projectId)

Definition at line 45 of file AxProjectCategoryPK.java.

45  {
46  this.projectId = projectId;
47  }
Here is the caller graph for this function:

◆ setServerDomain()

void org.turro.member.db.entities.AxProjectCategoryPK.setServerDomain ( String  serverDomain)

Definition at line 37 of file AxProjectCategoryPK.java.

37  {
38  this.serverDomain = serverDomain;
39  }
Here is the caller graph for this function:

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