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

Public Member Functions

String getId ()
 
void setId (String id)
 
RelationId getRelation ()
 
void setRelation (RelationId relation)
 
boolean isBanned ()
 
void setBanned (boolean banned)
 

Detailed Description

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

Definition at line 34 of file AxProjectBan.java.

Member Function Documentation

◆ getId()

String org.turro.server.db.entities.AxProjectBan.getId ( )

Definition at line 43 of file AxProjectBan.java.

43  {
44  return id;
45  }

◆ getRelation()

RelationId org.turro.server.db.entities.AxProjectBan.getRelation ( )

Definition at line 56 of file AxProjectBan.java.

56  {
57  return relation;
58  }
Here is the caller graph for this function:

◆ isBanned()

boolean org.turro.server.db.entities.AxProjectBan.isBanned ( )

Definition at line 64 of file AxProjectBan.java.

64  {
65  return banned;
66  }
Here is the caller graph for this function:

◆ setBanned()

void org.turro.server.db.entities.AxProjectBan.setBanned ( boolean  banned)

Definition at line 68 of file AxProjectBan.java.

68  {
69  this.banned = banned;
70  }
Here is the caller graph for this function:

◆ setId()

void org.turro.server.db.entities.AxProjectBan.setId ( String  id)

Definition at line 47 of file AxProjectBan.java.

47  {
48  this.id = id;
49  if(!Strings.isBlank(id) && id.contains("##")) {
50  String v[] = id.split("##");
51  relation.setMainEntityId(v[0]);
52  relation.setMainMemberId(Converter.STANDARD.convert(v[1], Long.class));
53  }
54  }
void setMainMemberId(Long mainMemberId)
Definition: RelationId.java:54
void setMainEntityId(String mainEntityId)
Definition: RelationId.java:46
Here is the caller graph for this function:

◆ setRelation()

void org.turro.server.db.entities.AxProjectBan.setRelation ( RelationId  relation)

Definition at line 60 of file AxProjectBan.java.

60  {
61  this.relation = relation;
62  }
Here is the caller graph for this function:

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