Class BmCustomerBillController

java.lang.Object
de.hybris.platform.billmanagementtmfwebservices.v2.controller.BmBaseController
de.hybris.platform.billmanagementtmfwebservices.v2.controller.BmCustomerBillController
All Implemented Interfaces:
CustomerBillApi

@Controller public class BmCustomerBillController extends BmBaseController implements CustomerBillApi
Default implementation of controller for CustomerBillApi.
Since:
2208
  • Constructor Details

    • BmCustomerBillController

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

    • listCustomerBill

      @RequestMapping(value="/customerBill", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<List<CustomerBill>> listCustomerBill(@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:
      listCustomerBill in interface CustomerBillApi
    • retrieveCustomerBill

      @RequestMapping(value="/customerBill/{id:.+}", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<CustomerBill> retrieveCustomerBill(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
      Specified by:
      retrieveCustomerBill in interface CustomerBillApi
    • patchCustomerBill

      @Secured("ROLE_TRUSTED_CLIENT") @RequestMapping(value="/customerBill/{id}", produces="application/json;charset=utf-8", method=PATCH) public org.springframework.http.ResponseEntity<CustomerBill> patchCustomerBill(@PathVariable("id") String id, @Valid @RequestBody @Valid CustomerBill customerBill)
      Specified by:
      patchCustomerBill in interface CustomerBillApi
    • getTuaPartyBillService

      public TuaPartyBillService getTuaPartyBillService()
    • getBmPaginationService

      public BmPaginationService getBmPaginationService()
    • getUserService

      protected de.hybris.platform.servicelayer.user.UserService getUserService()
    • getTxTemplate

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