BrightSide Workbench Full Report + Source Code
org.turro.contacts.Syndication Class Reference
Inheritance diagram for org.turro.contacts.Syndication:
Collaboration diagram for org.turro.contacts.Syndication:

Public Member Functions

String getId ()
 
String getName ()
 
void setName (String name)
 
boolean isDynamic ()
 
void setDynamic (boolean dynamic)
 
org.turro.contacts.Contact getContact ()
 
void setContact (org.turro.contacts.Contact contact)
 
SecurityGroup getSocialGroup ()
 
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 ()
 

Protected Member Functions

void setId (String id)
 

Detailed Description

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

Definition at line 39 of file Syndication.java.

Member Function Documentation

◆ entityId()

Object org.turro.contacts.Syndication.entityId ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 98 of file Syndication.java.

98  {
99  return id;
100  }

◆ getContact()

org.turro.contacts.Contact org.turro.contacts.Syndication.getContact ( )

Definition at line 81 of file Syndication.java.

81  {
82  return contact;
83  }

◆ getId()

String org.turro.contacts.Syndication.getId ( )

Definition at line 57 of file Syndication.java.

57  {
58  return id;
59  }

◆ getName()

String org.turro.contacts.Syndication.getName ( )

Definition at line 65 of file Syndication.java.

65  {
66  return name;
67  }

◆ getSocialGroup()

SecurityGroup org.turro.contacts.Syndication.getSocialGroup ( )

Definition at line 91 of file Syndication.java.

91  {
92  return SecurityGroups.get(name);
93  }
Here is the call graph for this function:

◆ isDynamic()

boolean org.turro.contacts.Syndication.isDynamic ( )

Definition at line 73 of file Syndication.java.

73  {
74  return dynamic;
75  }

◆ isEmpty()

boolean org.turro.contacts.Syndication.isEmpty ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 103 of file Syndication.java.

103  {
104  return Strings.isEmpty(name);
105  }

◆ setContact()

void org.turro.contacts.Syndication.setContact ( org.turro.contacts.Contact  contact)

Definition at line 85 of file Syndication.java.

85  {
86  this.contact = contact;
87  }
Here is the caller graph for this function:

◆ setDynamic()

void org.turro.contacts.Syndication.setDynamic ( boolean  dynamic)

Definition at line 77 of file Syndication.java.

77  {
78  this.dynamic = dynamic;
79  }
Here is the caller graph for this function:

◆ setId()

void org.turro.contacts.Syndication.setId ( String  id)
protected

Definition at line 61 of file Syndication.java.

61  {
62  this.id = id;
63  }

◆ setName()

void org.turro.contacts.Syndication.setName ( String  name)

Definition at line 69 of file Syndication.java.

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

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