Uses of Class
org.optaweb.employeerostering.domain.employee.Employee
-
-
Uses of Employee in org.optaweb.employeerostering.domain.employee
Methods in org.optaweb.employeerostering.domain.employee that return Employee Modifier and Type Method Description EmployeeEmployeeAvailability. getEmployee()Methods in org.optaweb.employeerostering.domain.employee with parameters of type Employee Modifier and Type Method Description voidEmployeeAvailability. setEmployee(Employee employee)Constructors in org.optaweb.employeerostering.domain.employee with parameters of type Employee Constructor Description EmployeeAvailability(Integer tenantId, Employee employee, OffsetDateTime startDateTime, OffsetDateTime endDateTime)EmployeeAvailability(ZoneId zoneId, EmployeeAvailabilityView employeeAvailabilityView, Employee employee) -
Uses of Employee in org.optaweb.employeerostering.domain.employee.view
Constructors in org.optaweb.employeerostering.domain.employee.view with parameters of type Employee Constructor Description EmployeeAvailabilityView(Integer tenantId, Employee employee, LocalDateTime startDateTime, LocalDateTime endDateTime, EmployeeAvailabilityState state) -
Uses of Employee in org.optaweb.employeerostering.domain.roster
Methods in org.optaweb.employeerostering.domain.roster that return types with arguments of type Employee Modifier and Type Method Description List<Employee>Roster. getEmployeeList()Method parameters in org.optaweb.employeerostering.domain.roster with type arguments of type Employee Modifier and Type Method Description voidRoster. setEmployeeList(List<Employee> employeeList) -
Uses of Employee in org.optaweb.employeerostering.domain.roster.view
Fields in org.optaweb.employeerostering.domain.roster.view with type parameters of type Employee Modifier and Type Field Description protected @NotNull List<Employee>AbstractRosterView. employeeListMethods in org.optaweb.employeerostering.domain.roster.view that return types with arguments of type Employee Modifier and Type Method Description List<Employee>AbstractRosterView. getEmployeeList()Method parameters in org.optaweb.employeerostering.domain.roster.view with type arguments of type Employee Modifier and Type Method Description voidAbstractRosterView. setEmployeeList(List<Employee> employeeList) -
Uses of Employee in org.optaweb.employeerostering.domain.rotation
Methods in org.optaweb.employeerostering.domain.rotation that return Employee Modifier and Type Method Description EmployeeSeat. getEmployee()Methods in org.optaweb.employeerostering.domain.rotation with parameters of type Employee Modifier and Type Method Description voidSeat. setEmployee(Employee employee)Constructors in org.optaweb.employeerostering.domain.rotation with parameters of type Employee Constructor Description Seat(Integer dayInRotation, Employee employee) -
Uses of Employee in org.optaweb.employeerostering.domain.shift
Methods in org.optaweb.employeerostering.domain.shift that return Employee Modifier and Type Method Description EmployeeShift. getEmployee()EmployeeShift. getOriginalEmployee()EmployeeShift. getRotationEmployee()Methods in org.optaweb.employeerostering.domain.shift with parameters of type Employee Modifier and Type Method Description voidShift. setEmployee(Employee employee)voidShift. setOriginalEmployee(Employee originalEmployee)voidShift. setRotationEmployee(Employee rotationEmployee)Constructors in org.optaweb.employeerostering.domain.shift with parameters of type Employee Constructor Description Shift(Integer tenantId, Spot spot, OffsetDateTime startDateTime, OffsetDateTime endDateTime, Employee rotationEmployee)Shift(Integer tenantId, Spot spot, OffsetDateTime startDateTime, OffsetDateTime endDateTime, Employee rotationEmployee, Set<Skill> requiredSkillSet, Employee originalEmployee)Shift(ZoneId zoneId, ShiftView shiftView, Spot spot, Employee rotationEmployee)Shift(ZoneId zoneId, ShiftView shiftView, Spot spot, Employee rotationEmployee, Set<Skill> requiredSkillSet, Employee originalEmployee) -
Uses of Employee in org.optaweb.employeerostering.domain.shift.view
Constructors in org.optaweb.employeerostering.domain.shift.view with parameters of type Employee Constructor Description ShiftView(Integer tenantId, Spot spot, LocalDateTime startDateTime, LocalDateTime endDateTime, Employee rotationEmployee)ShiftView(Integer tenantId, Spot spot, LocalDateTime startDateTime, LocalDateTime endDateTime, Employee rotationEmployee, List<Long> requiredSkillSetIdList, Employee originalEmployee) -
Uses of Employee in org.optaweb.employeerostering.domain.violation
Methods in org.optaweb.employeerostering.domain.violation that return Employee Modifier and Type Method Description EmployeeContractMinutesViolation. getEmployee()Methods in org.optaweb.employeerostering.domain.violation with parameters of type Employee Modifier and Type Method Description voidContractMinutesViolation. setEmployee(Employee employee)Constructors in org.optaweb.employeerostering.domain.violation with parameters of type Employee Constructor Description ContractMinutesViolation(Employee employee, ContractMinutesViolation.Type type, Long minutesWorked, org.optaplanner.core.api.score.buildin.hardmediumsoftlong.HardMediumSoftLongScore score) -
Uses of Employee in org.optaweb.employeerostering.service.employee
Methods in org.optaweb.employeerostering.service.employee that return Employee Modifier and Type Method Description EmployeeEmployeeService. convertFromEmployeeView(Integer tenantId, EmployeeView employeeView)EmployeeEmployeeService. createEmployee(Integer tenantId, EmployeeView employeeView)EmployeeEmployeeRepository. findEmployeeByName(Integer tenantId, String name)EmployeeEmployeeService. getEmployee(Integer tenantId, Long id)EmployeeEmployeeService. updateEmployee(Integer tenantId, EmployeeView employeeView)Methods in org.optaweb.employeerostering.service.employee that return types with arguments of type Employee Modifier and Type Method Description org.springframework.http.ResponseEntity<List<Employee>>EmployeeController. addEmployeesFromExcelFile(@Min(0L) Integer tenantId, org.springframework.web.multipart.MultipartFile excelDataFile)org.springframework.http.ResponseEntity<Employee>EmployeeController. createEmployee(@Min(0L) Integer tenantId, @Valid EmployeeView employeeView)List<Employee>EmployeeRepository. findAllByTenantId(Integer tenantId, org.springframework.data.domain.Pageable pageable)org.springframework.http.ResponseEntity<Employee>EmployeeController. getEmployee(@Min(0L) Integer tenantId, @Min(0L) Long id)org.springframework.http.ResponseEntity<List<Employee>>EmployeeController. getEmployeeList(@Min(0L) Integer tenantId)List<Employee>EmployeeService. getEmployeeList(Integer tenantId)List<Employee>EmployeeService. importEmployeesFromExcel(Integer tenantId, InputStream excelInputStream)org.springframework.http.ResponseEntity<Employee>EmployeeController. updateEmployee(@Min(0L) Integer tenantId, @Valid EmployeeView employeeView)Methods in org.optaweb.employeerostering.service.employee with parameters of type Employee Modifier and Type Method Description protected voidEmployeeService. validateEmployee(Integer tenantId, Employee employee)Method parameters in org.optaweb.employeerostering.service.employee with type arguments of type Employee Modifier and Type Method Description List<EmployeeAvailability>EmployeeAvailabilityRepository. filterWithEmployee(Integer tenantId, Set<Employee> employeeSet, OffsetDateTime startDateTime, OffsetDateTime endDateTime) -
Uses of Employee in org.optaweb.employeerostering.service.roster
Methods in org.optaweb.employeerostering.service.roster that return types with arguments of type Employee Modifier and Type Method Description List<Employee>RosterGenerator. createEmployeeList(RosterGenerator.GeneratorType generatorType, Integer tenantId, int size, List<Contract> contractList, List<Skill> generalSkillList)Method parameters in org.optaweb.employeerostering.service.roster with type arguments of type Employee Modifier and Type Method Description List<EmployeeAvailability>RosterGenerator. createEmployeeAvailabilityList(RosterGenerator.GeneratorType generatorType, Integer tenantId, RosterConstraintConfiguration rosterConstraintConfiguration, RosterState rosterState, List<Employee> employeeList, List<Shift> shiftList)org.springframework.http.ResponseEntity<AvailabilityRosterView>RosterController. getAvailabilityRosterViewFor(@Min(0L) Integer tenantId, String startDateString, String endDateString, @Valid List<Employee> employees)AvailabilityRosterViewRosterService. getAvailabilityRosterViewFor(Integer tenantId, String startDateString, String endDateString, List<Employee> employeeList) -
Uses of Employee in org.optaweb.employeerostering.service.shift
Method parameters in org.optaweb.employeerostering.service.shift with type arguments of type Employee Modifier and Type Method Description List<Shift>ShiftRepository. filterWithEmployees(Integer tenantId, Set<Employee> employeeSet, OffsetDateTime startDateTime, OffsetDateTime endDateTime)
-