Class BmCustomerBillController
java.lang.Object
de.hybris.platform.billmanagementtmfwebservices.v1.controller.BmBaseController
de.hybris.platform.billmanagementtmfwebservices.v1.controller.BmCustomerBillController
- All Implemented Interfaces:
CustomerBillApi
@Deprecated(since="2208")
@Controller
public class BmCustomerBillController
extends BmBaseController
implements CustomerBillApi
Deprecated.
2208
Default implementation of controller for
CustomerBillApi.- Since:
- 2108
-
Constructor Summary
ConstructorsConstructorDescriptionBmCustomerBillController(javax.servlet.http.HttpServletRequest request) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Deprecated.protected de.hybris.platform.servicelayer.user.UserServiceDeprecated.org.springframework.http.ResponseEntity<List<CustomerBill>>listCustomerBill(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String relatedPartyId) Deprecated.org.springframework.http.ResponseEntity<CustomerBill>retrieveCustomerBill(String id, @Valid String fields) Deprecated.Methods inherited from class de.hybris.platform.billmanagementtmfwebservices.v1.controller.BmBaseController
filter, getDataMapper, getObjectMapper, getQueryStringWithoutOffsetAndLimit, getUnsuccessfulResponse, handleModelNotFoundException, hasRole, init, sanitize
-
Constructor Details
-
BmCustomerBillController
@Autowired public BmCustomerBillController(javax.servlet.http.HttpServletRequest request) Deprecated.
-
-
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) Deprecated.- Specified by:
listCustomerBillin interfaceCustomerBillApi
-
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) Deprecated.- Specified by:
retrieveCustomerBillin interfaceCustomerBillApi
-
getBmPartyBillService
Deprecated. -
getBmPaginationService
Deprecated. -
getUserService
protected de.hybris.platform.servicelayer.user.UserService getUserService()Deprecated.
-