Class TransferTimeTypeService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.scheduling.rs1.transfertimetype.TransferTimeTypeService
@RestController
@RequestMapping("scheduling/r1/transfer-time-type")
@Resource(logging=true)
public class TransferTimeTypeService
extends PrivateService
Service for manage working time type
- Since:
- 17.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTOTransferTimeType> get(Long transferTimeTypeId, Collection<String> fields) org.springframework.http.ResponseEntity<PageResponse<DTOTransferTimeType>> getCollection(@Valid Page page, Collection<String> fields, String order, @Valid @NotNull DTOTransferTimeTypeFilter filter)
-
Constructor Details
-
TransferTimeTypeService
public TransferTimeTypeService()
-
-
Method Details
-
getCollection
@GetMapping(produces="application/json") public org.springframework.http.ResponseEntity<PageResponse<DTOTransferTimeType>> getCollection(@RequestParam("_page") @Valid @Valid Page page, @RequestParam(required=false,name="_fields") Collection<String> fields, @RequestParam(required=false,name="_order") String order, @Valid @NotNull @Valid @NotNull DTOTransferTimeTypeFilter filter) throws DAValidateException, DAException - Throws:
DAValidateExceptionDAException
-
get
@GetMapping(value="{transferTimeTypeId:[0-9]+}", produces="application/json") public org.springframework.http.ResponseEntity<DTOTransferTimeType> get(@PathVariable("transferTimeTypeId") Long transferTimeTypeId, @RequestParam(required=false,value="_fields") Collection<String> fields) throws DAValidateException, DAException - Throws:
DAValidateExceptionDAException
-