java.lang.Object
de.hybris.platform.billingaccounttmfwebservices.v2.controllers.BaBaseController
de.hybris.platform.billingaccounttmfwebservices.v2.controllers.BaBillFormatController
All Implemented Interfaces:
BillFormatApi

@Controller public class BaBillFormatController extends BaBaseController implements BillFormatApi
Default implementation of controller for BillFormatApi.
Since:
2302
  • Constructor Details

    • BaBillFormatController

      public BaBillFormatController(javax.servlet.http.HttpServletRequest request)
  • Method Details

    • listBillFormat

      @RequestMapping(value="/billFormat", produces="application/json;charset=utf-8", method=GET) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<List<BillFormat>> listBillFormat(@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)
      Specified by:
      listBillFormat in interface BillFormatApi
    • createBillFormat

      @RequestMapping(value="/billFormat", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<BillFormat> createBillFormat(@Valid @RequestBody @Valid BillFormat billFormat)
      Specified by:
      createBillFormat in interface BillFormatApi
    • patchBillFormat

      @RequestMapping(value="/billFormat/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<BillFormat> patchBillFormat(@PathVariable("id") String id, @Valid @RequestBody @Valid BillFormat billFormat)
      Specified by:
      patchBillFormat in interface BillFormatApi
    • deleteBillFormat

      @RequestMapping(value="/billFormat/{id:.+}", produces="application/json;charset=utf-8", method=DELETE) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<Void> deleteBillFormat(@PathVariable("id") String id)
      Specified by:
      deleteBillFormat in interface BillFormatApi
    • retrieveBillFormat

      @Secured("ROLE_TRUSTED_CLIENT") @RequestMapping(value="/billFormat/{id:.+}", produces="application/json", method=GET) public org.springframework.http.ResponseEntity<BillFormat> retrieveBillFormat(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
      Specified by:
      retrieveBillFormat in interface BillFormatApi
    • getTxTemplate

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

      protected TuaBillFormatService getTuaBillFormatService()
    • getCreateBillFormatValidator

      protected BaCreateBillFormatValidator getCreateBillFormatValidator()
    • getPaginationService

      public BaPaginationService getPaginationService()