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

Public Member Functions

String getServerDomain ()
 
void setServerDomain (String serverDomain)
 
String getProjectGrantId ()
 
void setProjectGrantId (String projectGrantId)
 
ProjectGrant getProjectGrant ()
 
void setProjectGrant (ProjectGrant projectGrant)
 
Object entityId ()
 
boolean isEmpty ()
 
- Public Member Functions inherited from org.turro.jpa.entity.IDaoEntity
default boolean isNew ()
 
default void prepareSave ()
 
default void prepareDelete ()
 
default void removeEmpties ()
 
default Collection< Collection > collections ()
 

Detailed Description

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

Definition at line 36 of file AxProjectGrantPublic.java.

Member Function Documentation

◆ entityId()

Object org.turro.member.db.entities.AxProjectGrantPublic.entityId ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 74 of file AxProjectGrantPublic.java.

74  {
75  return AxProjectGrantPublicPK.from(this);
76  }
Here is the call graph for this function:

◆ getProjectGrant()

ProjectGrant org.turro.member.db.entities.AxProjectGrantPublic.getProjectGrant ( )

Definition at line 61 of file AxProjectGrantPublic.java.

61  {
62  return Strings.isBlank(projectGrantId) ? null :
63  (projectGrant == null ? new DossierPU().find(ProjectGrant.class, Long.valueOf(projectGrantId)) : projectGrant);
64  }

◆ getProjectGrantId()

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

Definition at line 49 of file AxProjectGrantPublic.java.

49  {
50  return projectGrantId;
51  }
Here is the caller graph for this function:

◆ getServerDomain()

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

Definition at line 41 of file AxProjectGrantPublic.java.

41  {
42  return serverDomain;
43  }
Here is the caller graph for this function:

◆ isEmpty()

boolean org.turro.member.db.entities.AxProjectGrantPublic.isEmpty ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 79 of file AxProjectGrantPublic.java.

79  {
80  return Strings.isBlank(serverDomain) ||
81  Strings.isBlank(projectGrantId);
82  }

◆ setProjectGrant()

void org.turro.member.db.entities.AxProjectGrantPublic.setProjectGrant ( ProjectGrant  projectGrant)

Definition at line 66 of file AxProjectGrantPublic.java.

66  {
67  this.projectGrant = projectGrant;
68  this.projectGrantId = projectGrant == null ? null : Long.toString(projectGrant.getId());
69  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ setProjectGrantId()

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

Definition at line 53 of file AxProjectGrantPublic.java.

53  {
54  this.projectGrantId = projectGrantId;
55  }

◆ setServerDomain()

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

Definition at line 45 of file AxProjectGrantPublic.java.

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

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