Class BmCustomerBillOnDemandController

java.lang.Object
de.hybris.platform.billmanagementtmfwebservices.v2.controller.BmBaseController
de.hybris.platform.billmanagementtmfwebservices.v2.controller.BmCustomerBillOnDemandController
All Implemented Interfaces:
CustomerBillOnDemandApi

@Controller public class BmCustomerBillOnDemandController extends BmBaseController implements CustomerBillOnDemandApi
Default implementation of controller for CustomerBillOnDemandApi.
Since:
2302
  • Constructor Details

    • BmCustomerBillOnDemandController

      @Autowired public BmCustomerBillOnDemandController(javax.servlet.http.HttpServletRequest request)
  • Method Details

    • createCustomerBillOnDemand

      @RequestMapping(value="/customerBillOnDemand", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<CustomerBillOnDemand> createCustomerBillOnDemand(@Valid @RequestBody @Valid CustomerBillOnDemand customerBillOnDemand)
      Specified by:
      createCustomerBillOnDemand in interface CustomerBillOnDemandApi
    • retrieveCustomerBillOnDemand

      @RequestMapping(value="/customerBillOnDemand/{id}", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<CustomerBillOnDemand> retrieveCustomerBillOnDemand(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
      Specified by:
      retrieveCustomerBillOnDemand in interface CustomerBillOnDemandApi
    • listCustomerBillOnDemand

      @RequestMapping(value="/customerBillOnDemand", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<List<CustomerBillOnDemand>> listCustomerBillOnDemand(@Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="offset",required=false) @Valid Integer offset, @Valid @RequestParam(value="limit",required=false) @Valid Integer limit, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyId)
      Specified by:
      listCustomerBillOnDemand in interface CustomerBillOnDemandApi
    • getTuaPartyBillOnDemandService

      protected TuaPartyBillOnDemandService getTuaPartyBillOnDemandService()
    • getPartyBillOnDemandGenericService

      protected TuaGenericService getPartyBillOnDemandGenericService()
    • getBmPaginationService

      protected BmPaginationService getBmPaginationService()
    • getTxTemplate

      protected org.springframework.transaction.support.TransactionTemplate getTxTemplate()
    • getBmCustomerBillOnDemandCreateValidator

      protected BmCustomerBillOnDemandCreateValidator getBmCustomerBillOnDemandCreateValidator()