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

Public Member Functions

Company getCompany ()
 
void setCompany (Company company)
 
double getStructureMargin ()
 
void setStructureMargin (double structureMargin)
 
long getId ()
 
void setId (long id)
 
boolean isInternal ()
 
void setInternal (boolean internal)
 
String getName ()
 
void setName (String name)
 
double getProfitMargin ()
 
void setProfitMargin (double profitMargin)
 
boolean isAlwaysApply ()
 
void setAlwaysApply (boolean alwaysApply)
 
Set< ContractgetStores ()
 
void setStores (Set< Contract > stores)
 
Object entityId ()
 
boolean isEmpty ()
 
String getFullName ()
 
- 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 32 of file Service.java.

Member Function Documentation

◆ entityId()

Object org.turro.financials.entity.Service.entityId ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 128 of file Service.java.

128  {
129  return id;
130  }

◆ getCompany()

Company org.turro.financials.entity.Service.getCompany ( )

Definition at line 56 of file Service.java.

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

◆ getFullName()

String org.turro.financials.entity.Service.getFullName ( )

Definition at line 139 of file Service.java.

139  {
140  return getName();
141  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getId()

long org.turro.financials.entity.Service.getId ( )

Implements org.turro.financials.model.business.IValuation.

Definition at line 74 of file Service.java.

74  {
75  return id;
76  }

◆ getName()

String org.turro.financials.entity.Service.getName ( )

Implements org.turro.financials.model.business.IValuation.

Definition at line 91 of file Service.java.

91  {
92  return name;
93  }
Here is the caller graph for this function:

◆ getProfitMargin()

double org.turro.financials.entity.Service.getProfitMargin ( )

Implements org.turro.financials.model.business.IValuation.

Definition at line 100 of file Service.java.

100  {
101  return profitMargin;
102  }
Here is the caller graph for this function:

◆ getStores()

Set<Contract> org.turro.financials.entity.Service.getStores ( )

Definition at line 117 of file Service.java.

117  {
118  return stores;
119  }
Here is the caller graph for this function:

◆ getStructureMargin()

double org.turro.financials.entity.Service.getStructureMargin ( )

Implements org.turro.financials.model.business.IValuation.

Definition at line 65 of file Service.java.

65  {
66  return structureMargin;
67  }

◆ isAlwaysApply()

boolean org.turro.financials.entity.Service.isAlwaysApply ( )

Implements org.turro.financials.model.business.IValuation.

Definition at line 109 of file Service.java.

109  {
110  return alwaysApply;
111  }

◆ isEmpty()

boolean org.turro.financials.entity.Service.isEmpty ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 133 of file Service.java.

133  {
134  return Strings.isBlank(name);
135  }

◆ isInternal()

boolean org.turro.financials.entity.Service.isInternal ( )

Definition at line 82 of file Service.java.

82  {
83  return internal;
84  }

◆ setAlwaysApply()

void org.turro.financials.entity.Service.setAlwaysApply ( boolean  alwaysApply)

Definition at line 113 of file Service.java.

113  {
114  this.alwaysApply = alwaysApply;
115  }

◆ setCompany()

void org.turro.financials.entity.Service.setCompany ( Company  company)

Definition at line 60 of file Service.java.

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

◆ setId()

void org.turro.financials.entity.Service.setId ( long  id)

Definition at line 78 of file Service.java.

78  {
79  this.id = id;
80  }

◆ setInternal()

void org.turro.financials.entity.Service.setInternal ( boolean  internal)

Definition at line 86 of file Service.java.

86  {
87  this.internal = internal;
88  }

◆ setName()

void org.turro.financials.entity.Service.setName ( String  name)

Definition at line 95 of file Service.java.

95  {
96  this.name = name;
97  }

◆ setProfitMargin()

void org.turro.financials.entity.Service.setProfitMargin ( double  profitMargin)

Definition at line 104 of file Service.java.

104  {
105  this.profitMargin = profitMargin;
106  }

◆ setStores()

void org.turro.financials.entity.Service.setStores ( Set< Contract stores)

Definition at line 121 of file Service.java.

121  {
122  this.stores = stores;
123  }

◆ setStructureMargin()

void org.turro.financials.entity.Service.setStructureMargin ( double  structureMargin)

Definition at line 69 of file Service.java.

69  {
70  this.structureMargin = structureMargin;
71  }

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