| Modifier and Type | Method and Description |
|---|---|
Contract |
Employee.getContract() |
| Modifier and Type | Method and Description |
|---|---|
void |
Employee.setContract(Contract contract) |
| Constructor and Description |
|---|
Employee(Integer tenantId,
String name,
Contract contract,
Set<Skill> skillProficiencySet) |
| Modifier and Type | Method and Description |
|---|---|
Contract |
EmployeeView.getContract() |
| Modifier and Type | Method and Description |
|---|---|
void |
EmployeeView.setContract(Contract contract) |
| Constructor and Description |
|---|
EmployeeView(Integer tenantId,
String name,
Contract contract,
Set<Skill> skillProficiencySet) |
| Modifier and Type | Method and Description |
|---|---|
Contract |
ContractService.convertFromView(Integer tenantId,
ContractView contractView) |
Contract |
ContractService.createContract(Integer tenantId,
ContractView contractView) |
Contract |
ContractService.getContract(Integer tenantId,
Long id) |
Contract |
ContractService.getOrCreateDefaultContract(Integer tenantId) |
Contract |
ContractService.updateContract(Integer tenantId,
ContractView contractView) |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<Contract> |
ContractController.createContract(@Min(value=0L) Integer tenantId,
@Valid ContractView contractView) |
List<Contract> |
ContractRepository.findAllByTenantId(Integer tenantId) |
org.springframework.http.ResponseEntity<Contract> |
ContractController.getContract(@Min(value=0L) Integer tenantId,
@Min(value=0L) Long id) |
List<Contract> |
ContractService.getContractList(Integer tenantId) |
org.springframework.http.ResponseEntity<List<Contract>> |
ContractController.getContractList(@Min(value=0L) Integer tenantId) |
org.springframework.http.ResponseEntity<Contract> |
ContractController.updateContract(@Min(value=0L) Integer tenantId,
@Valid ContractView contractView) |
| Modifier and Type | Method and Description |
|---|---|
List<Contract> |
RosterGenerator.createContractList(Integer tenantId) |
| Modifier and Type | Method and Description |
|---|---|
List<Employee> |
RosterGenerator.createEmployeeList(RosterGenerator.GeneratorType generatorType,
Integer tenantId,
int size,
List<Contract> contractList,
List<Skill> generalSkillList) |
Copyright © 2017–2020 JBoss by Red Hat. All rights reserved.