Class OrchestratorActivityRemovalService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.orchestrator.scheduling.rs1.activityremoval.OrchestratorActivityRemovalService
@RestController
@RequestMapping("scheduling/manual/r1/scheduling/activities-removals")
@Resource(logging=true)
public class OrchestratorActivityRemovalService
extends PrivateService
Service to manage activities removals.
- Since:
- 18.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTOActivityRemovalResponse> post(@Valid DTOActivityRemoval dto) Remove an activity from a resource by callingActivityRemovalEvent.
-
Constructor Details
-
OrchestratorActivityRemovalService
public OrchestratorActivityRemovalService()
-
-
Method Details
-
post
@PostMapping(consumes="application/json", produces="application/json") public org.springframework.http.ResponseEntity<DTOActivityRemovalResponse> post(@Valid @RequestBody @Valid DTOActivityRemoval dto) throws DAValidateException, DAException Remove an activity from a resource by callingActivityRemovalEvent.- Parameters:
dto- theDTOActivityRemoval- Returns:
- the standard response containing the removed scheduling ids
- Throws:
DAValidateException- the DA validate exceptionDAException- the DA exception
-