Class BundlingRuleService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.core.bundler.rs2.configuration.bundling.rule.action.BundlingRuleService
@RestController("BundlingRuleService-legacy")
@RequestMapping("bundler/r2/config/bundling/rules")
@Resource(logging=true)
public class BundlingRuleService
extends PrivateService
Service to manage Bundling Rule.
- Since:
- 19.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Void> deleteFilters(Long id) Action to delete filters associated to a bundling rule.org.springframework.http.ResponseEntity<Void> deleteOrderings(Long id) Action to delete ordering associated to a bundling rule.
-
Constructor Details
-
BundlingRuleService
public BundlingRuleService()
-
-
Method Details
-
deleteFilters
@PostMapping(value="/{id:[0-9]+}/actions/deletefilters", produces="application/json") public org.springframework.http.ResponseEntity<Void> deleteFilters(@PathVariable("id") Long id) throws DAValidateException, DAException Action to delete filters associated to a bundling rule.BundlingRuleFiltersDeleteEvent- Parameters:
id- the id- Returns:
- the standard response
- Throws:
DAValidateException- the DA validate exceptionDAException- the DA exception
-
deleteOrderings
@PostMapping(value="/{id:[0-9]+}/actions/deleteorderings", produces="application/json") public org.springframework.http.ResponseEntity<Void> deleteOrderings(@PathVariable("id") Long id) throws DAValidateException, DAException Action to delete ordering associated to a bundling rule.BundlingRuleOrderingsDeleteEvent- Parameters:
id- the id- Returns:
- the standard response
- Throws:
DAValidateException- the DA validate exceptionDAException- the DA exception
-