Class TimesheetEventEntityService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.core.timesheet.rs2.task.evententity.TimesheetEventEntityService
@RestController
@RequestMapping("timesheet/r2/{id:[0-9]+}/tasks/{taskId:[0-9]+}/evententities")
@Resource(logging=true)
public class TimesheetEventEntityService
extends PrivateService
Services to manage timesheet task
- Since:
- 19.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTOEventEntity> Retrieves the required timesheet event entity.
-
Constructor Details
-
TimesheetEventEntityService
public TimesheetEventEntityService()
-
-
Method Details
-
get
@GetMapping(value="{eventEntityId:[0-9]+}", produces="application/json") public org.springframework.http.ResponseEntity<DTOEventEntity> get(@PathVariable("id") Long id, @PathVariable("taskId") Long taskId, @PathVariable("eventEntityId") Long eventEntityId) throws DAValidateException, DAException Retrieves the required timesheet event entity.EventEntityLoadEvent- Parameters:
id- the timesheet idtaskId- the timesheet task ideventEntityId- the timesheet event entity id- Returns:
- the response containing the required timesheet event entity
- Throws:
DAValidateException- the DA validate exceptionDAException- the DA exception
-