BrightSide Workbench Full Report + Source Code
org.turro.crm.entity.CustomerOwner Class Reference
Inheritance diagram for org.turro.crm.entity.CustomerOwner:
Collaboration diagram for org.turro.crm.entity.CustomerOwner:

Public Member Functions

Formula getAlert ()
 
void setAlert (Formula alert)
 
Formula getComission ()
 
void setComission (Formula comission)
 
Customer getCustomer ()
 
void setCustomer (Customer customer)
 
long getId ()
 
void setId (long id)
 
Date getOwningDate ()
 
void setOwningDate (Date owningDate)
 
Vendor getVendor ()
 
void setVendor (Vendor vendor)
 
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
llturro

Definition at line 12 of file CustomerOwner.java.

Member Function Documentation

◆ entityId()

Object org.turro.crm.entity.CustomerOwner.entityId ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 85 of file CustomerOwner.java.

85  {
86  return id;
87  }

◆ getAlert()

Formula org.turro.crm.entity.CustomerOwner.getAlert ( )

Definition at line 34 of file CustomerOwner.java.

34  {
35  return alert;
36  }
Here is the caller graph for this function:

◆ getComission()

Formula org.turro.crm.entity.CustomerOwner.getComission ( )

Definition at line 42 of file CustomerOwner.java.

42  {
43  return comission;
44  }
Here is the caller graph for this function:

◆ getCustomer()

Customer org.turro.crm.entity.CustomerOwner.getCustomer ( )

Definition at line 50 of file CustomerOwner.java.

50  {
51  return customer;
52  }

◆ getId()

long org.turro.crm.entity.CustomerOwner.getId ( )

Definition at line 58 of file CustomerOwner.java.

58  {
59  return id;
60  }

◆ getOwningDate()

Date org.turro.crm.entity.CustomerOwner.getOwningDate ( )

Definition at line 66 of file CustomerOwner.java.

66  {
67  return owningDate;
68  }

◆ getVendor()

Vendor org.turro.crm.entity.CustomerOwner.getVendor ( )

Definition at line 74 of file CustomerOwner.java.

74  {
75  return vendor;
76  }
Here is the caller graph for this function:

◆ isEmpty()

boolean org.turro.crm.entity.CustomerOwner.isEmpty ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 90 of file CustomerOwner.java.

90  {
91  return vendor == null || customer == null ||
92  comission == null || alert == null;
93  }
Here is the caller graph for this function:

◆ setAlert()

void org.turro.crm.entity.CustomerOwner.setAlert ( Formula  alert)

Definition at line 38 of file CustomerOwner.java.

38  {
39  this.alert = alert;
40  }

◆ setComission()

void org.turro.crm.entity.CustomerOwner.setComission ( Formula  comission)

Definition at line 46 of file CustomerOwner.java.

46  {
47  this.comission = comission;
48  }

◆ setCustomer()

void org.turro.crm.entity.CustomerOwner.setCustomer ( Customer  customer)

Definition at line 54 of file CustomerOwner.java.

54  {
55  this.customer = customer;
56  }
Here is the caller graph for this function:

◆ setId()

void org.turro.crm.entity.CustomerOwner.setId ( long  id)

Definition at line 62 of file CustomerOwner.java.

62  {
63  this.id = id;
64  }

◆ setOwningDate()

void org.turro.crm.entity.CustomerOwner.setOwningDate ( Date  owningDate)

Definition at line 70 of file CustomerOwner.java.

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

◆ setVendor()

void org.turro.crm.entity.CustomerOwner.setVendor ( Vendor  vendor)

Definition at line 78 of file CustomerOwner.java.

78  {
79  this.vendor = vendor;
80  }

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