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

Public Member Functions

boolean isAllowed ()
 
void setAllowed (boolean allowed)
 
Contract getContract ()
 
void setContract (Contract contract)
 
DocumentDefinition getDocumentDefinition ()
 
void setDocumentDefinition (DocumentDefinition documentDefinition)
 
long getId ()
 
void setId (long id)
 
Contract getStore ()
 
void setStore (Contract store)
 
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
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 33 of file RelatedContractStore.java.

Member Function Documentation

◆ entityId()

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

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 94 of file RelatedContractStore.java.

94  {
95  return id;
96  }

◆ getContract()

Contract org.turro.financials.entity.RelatedContractStore.getContract ( )

Definition at line 59 of file RelatedContractStore.java.

59  {
60  return contract;
61  }

◆ getDocumentDefinition()

DocumentDefinition org.turro.financials.entity.RelatedContractStore.getDocumentDefinition ( )

Definition at line 67 of file RelatedContractStore.java.

67  {
68  return documentDefinition;
69  }
Here is the caller graph for this function:

◆ getId()

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

Definition at line 75 of file RelatedContractStore.java.

75  {
76  return id;
77  }

◆ getStore()

Contract org.turro.financials.entity.RelatedContractStore.getStore ( )

Definition at line 83 of file RelatedContractStore.java.

83  {
84  return store;
85  }
Here is the caller graph for this function:

◆ isAllowed()

boolean org.turro.financials.entity.RelatedContractStore.isAllowed ( )

Definition at line 51 of file RelatedContractStore.java.

51  {
52  return allowed;
53  }

◆ isEmpty()

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

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 99 of file RelatedContractStore.java.

99  {
100  return documentDefinition == null || store == null;
101  }

◆ setAllowed()

void org.turro.financials.entity.RelatedContractStore.setAllowed ( boolean  allowed)

Definition at line 55 of file RelatedContractStore.java.

55  {
56  this.allowed = allowed;
57  }

◆ setContract()

void org.turro.financials.entity.RelatedContractStore.setContract ( Contract  contract)

Definition at line 63 of file RelatedContractStore.java.

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

◆ setDocumentDefinition()

void org.turro.financials.entity.RelatedContractStore.setDocumentDefinition ( DocumentDefinition  documentDefinition)

Definition at line 71 of file RelatedContractStore.java.

71  {
72  this.documentDefinition = documentDefinition;
73  }

◆ setId()

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

Definition at line 79 of file RelatedContractStore.java.

79  {
80  this.id = id;
81  }

◆ setStore()

void org.turro.financials.entity.RelatedContractStore.setStore ( Contract  store)

Definition at line 87 of file RelatedContractStore.java.

87  {
88  this.store = store;
89  }

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