Class BundleOperationOrderingService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.core.bundler.rs2.configuration.bundling.ordering.BundleOperationOrderingService
@RestController("BundleOperationOrderingService-legacy")
@RequestMapping("bundler/r2/config/bundling/orderings")
@Resource(logging=true)
public class BundleOperationOrderingService
extends PrivateService
Service to manage Bundle Operation Ordering.
- Since:
- 19.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTOBundleOperationOrdering> Retrieves the required bundle operation ordering.org.springframework.http.ResponseEntity<PageResponse<DTOBundleOperationOrdering>> getCollection(@NotNull @Valid Page page, @NotNull @Valid DTOBundleOperationOrderingSearchFilter filter) Retrieves all the stored bundle operation ordering.
-
Constructor Details
-
BundleOperationOrderingService
public BundleOperationOrderingService()
-
-
Method Details
-
getCollection
@GetMapping(produces="application/json") public org.springframework.http.ResponseEntity<PageResponse<DTOBundleOperationOrdering>> getCollection(@RequestParam("page") @NotNull @Valid @NotNull @Valid Page page, @RequestParam("filter") @NotNull @Valid @NotNull @Valid DTOBundleOperationOrderingSearchFilter filter) throws DAValidateException, DAException Retrieves all the stored bundle operation ordering.BundleOperationOrderingSearchEvent- Parameters:
page- the pagefilter- theDTOBundleOperationOrderingSearchFilter- Returns:
- the response containing the collection
- Throws:
DAValidateException- the DA validate exceptionDAException- the DA exception
-
get
@GetMapping(value="{id:[0-9]+}", produces="application/json") public org.springframework.http.ResponseEntity<DTOBundleOperationOrdering> get(@PathVariable("id") Long id) throws DAValidateException, DAException Retrieves the required bundle operation ordering.BundleOperationOrderingLoadEvent- Parameters:
id- the id- Returns:
- the response containing the required DTO bundle operation ordering
- Throws:
DAValidateException- the DA validate exceptionDAException- the DA exception
-