Class BmAppliedCustomerBillingRateController
java.lang.Object
de.hybris.platform.billmanagementtmfwebservices.v2.controller.BmBaseController
de.hybris.platform.billmanagementtmfwebservices.v2.controller.BmAppliedCustomerBillingRateController
- All Implemented Interfaces:
AppliedCustomerBillingRateApi
@Controller
public class BmAppliedCustomerBillingRateController
extends BmBaseController
implements AppliedCustomerBillingRateApi
Default implementation of controller for
AppliedCustomerBillingRateApi.- Since:
- 2302
-
Constructor Summary
ConstructorsConstructorDescriptionBmAppliedCustomerBillingRateController(javax.servlet.http.HttpServletRequest request) -
Method Summary
Modifier and TypeMethodDescriptionprotected BmPaginationServiceprotected TuaAppliedCustomerBillingRateServiceprotected TuaAuthorizationCommonServiceprotected de.hybris.platform.servicelayer.user.UserServiceorg.springframework.http.ResponseEntity<List<AppliedCustomerBillingRate>>listAppliedCustomerBillingRate(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String relatedPartyId) org.springframework.http.ResponseEntity<AppliedCustomerBillingRate>retrieveAppliedCustomerBillingRate(String id, @Valid String fields) Methods inherited from class de.hybris.platform.billmanagementtmfwebservices.v2.controller.BmBaseController
addDefaultFields, filter, getDataMapper, getI18nService, getMessageSource, getObjectMapper, getQueryStringWithoutOffsetAndLimit, getUnsuccessfulResponse, getUnsuccessfulResponse, handleModelNotFoundException, hasRole, init, sanitize, validate
-
Constructor Details
-
BmAppliedCustomerBillingRateController
public BmAppliedCustomerBillingRateController(javax.servlet.http.HttpServletRequest request)
-
-
Method Details
-
listAppliedCustomerBillingRate
@RequestMapping(value="/appliedCustomerBillingRate", produces="application/json;charset=utf-8", method=GET) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<List<AppliedCustomerBillingRate>> listAppliedCustomerBillingRate(@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:
listAppliedCustomerBillingRatein interfaceAppliedCustomerBillingRateApi
-
retrieveAppliedCustomerBillingRate
@RequestMapping(value="/appliedCustomerBillingRate/{id}", produces="application/json;charset=utf-8", method=GET) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<AppliedCustomerBillingRate> retrieveAppliedCustomerBillingRate(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields) - Specified by:
retrieveAppliedCustomerBillingRatein interfaceAppliedCustomerBillingRateApi
-
getTuaAppliedCustomerBillingRateService
-
getBmPaginationService
-
getUserService
protected de.hybris.platform.servicelayer.user.UserService getUserService() -
getTuaAuthorizationCommonService
-