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

Public Member Functions

String getServerDomain ()
 
void setServerDomain (String serverDomain)
 
String getProjectGrantId ()
 
void setProjectGrantId (String projectGrantId)
 
int hashCode ()
 
boolean equals (Object obj)
 

Static Public Member Functions

static AxProjectGrantPublicPK from (AxProjectGrantPublic pg)
 

Detailed Description

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

Definition at line 28 of file AxProjectGrantPublicPK.java.

Member Function Documentation

◆ equals()

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

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

◆ from()

static AxProjectGrantPublicPK org.turro.member.db.entities.AxProjectGrantPublicPK.from ( AxProjectGrantPublic  pg)
static

Definition at line 75 of file AxProjectGrantPublicPK.java.

75  {
76  AxProjectGrantPublicPK pk = new AxProjectGrantPublicPK();
77  pk.setServerDomain(pg.getServerDomain());
78  pk.setProjectGrantId(pg.getProjectGrantId());
79  return pk;
80  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getProjectGrantId()

String org.turro.member.db.entities.AxProjectGrantPublicPK.getProjectGrantId ( )

Definition at line 41 of file AxProjectGrantPublicPK.java.

41  {
42  return projectGrantId;
43  }

◆ getServerDomain()

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

Definition at line 33 of file AxProjectGrantPublicPK.java.

33  {
34  return serverDomain;
35  }

◆ hashCode()

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

Definition at line 50 of file AxProjectGrantPublicPK.java.

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

◆ setProjectGrantId()

void org.turro.member.db.entities.AxProjectGrantPublicPK.setProjectGrantId ( String  projectGrantId)

Definition at line 45 of file AxProjectGrantPublicPK.java.

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

◆ setServerDomain()

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

Definition at line 37 of file AxProjectGrantPublicPK.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: