Class OrchestratorUnbundlingService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.orchestrator.workorders.rs1.bundling.OrchestratorUnbundlingService
@RestController
@RequestMapping("work-orders/bundler/r1/unbundlings/{bundleId:[0-9]+}")
@Resource(logging=true)
public class OrchestratorUnbundlingService
extends PrivateService
Service to manage unbundling processes.
- Since:
- 20.1
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Void> unbundling(Long bundleId) Unbundles an existing bundle by calling theUnbundlingEvent.
-
Constructor Details
-
OrchestratorUnbundlingService
public OrchestratorUnbundlingService()
-
-
Method Details
-
unbundling
@PostMapping(produces="application/json") public org.springframework.http.ResponseEntity<Void> unbundling(@PathVariable("bundleId") Long bundleId) throws DAValidateException, DAException Unbundles an existing bundle by calling theUnbundlingEvent.- Parameters:
bundleId- the ID of the bundle to unbundle- Returns:
- the response containing the id of the unbundled bundle
- Throws:
DAValidateException- the DA validate exceptionDAException- the DA exception
-