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

Public Member Functions

String getEntityPath ()
 
void setEntityPath (String entityPath)
 
String getContactId ()
 
void setContactId (String contactId)
 
boolean isDelivered ()
 
void setDelivered (boolean delivered)
 
IContact getIContact ()
 

Detailed Description

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

Definition at line 33 of file SendableAssistant.java.

Member Function Documentation

◆ getContactId()

String org.turro.elephant.entities.db.SendableAssistant.getContactId ( )

Definition at line 49 of file SendableAssistant.java.

49  {
50  return contactId;
51  }

◆ getEntityPath()

String org.turro.elephant.entities.db.SendableAssistant.getEntityPath ( )

Definition at line 41 of file SendableAssistant.java.

41  {
42  return entityPath;
43  }

◆ getIContact()

IContact org.turro.elephant.entities.db.SendableAssistant.getIContact ( )

Definition at line 70 of file SendableAssistant.java.

70  {
71  if(_contact == null) {
72  _contact = Contacts.getContactById(contactId);
73  }
74  return _contact;
75  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ isDelivered()

boolean org.turro.elephant.entities.db.SendableAssistant.isDelivered ( )

Definition at line 58 of file SendableAssistant.java.

58  {
59  return delivered;
60  }

◆ setContactId()

void org.turro.elephant.entities.db.SendableAssistant.setContactId ( String  contactId)

Definition at line 53 of file SendableAssistant.java.

53  {
54  this.contactId = contactId;
55  _contact = null;
56  }
Here is the caller graph for this function:

◆ setDelivered()

void org.turro.elephant.entities.db.SendableAssistant.setDelivered ( boolean  delivered)

Definition at line 62 of file SendableAssistant.java.

62  {
63  this.delivered = delivered;
64  }
Here is the caller graph for this function:

◆ setEntityPath()

void org.turro.elephant.entities.db.SendableAssistant.setEntityPath ( String  entityPath)

Definition at line 45 of file SendableAssistant.java.

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

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