Class BaBillingAccountController
java.lang.Object
de.hybris.platform.billingaccounttmfwebservices.v1.controllers.BaBaseController
de.hybris.platform.billingaccounttmfwebservices.v1.controllers.BaBillingAccountController
- All Implemented Interfaces:
BillingAccountApi
@Deprecated(since="2208")
@Controller
public class BaBillingAccountController
extends BaBaseController
implements BillingAccountApi
Deprecated.
2208
Default implementation of controller for
BillingAccountApi.- Since:
- 2105
-
Constructor Summary
ConstructorsConstructorDescriptionBaBillingAccountController(javax.servlet.http.HttpServletRequest request) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<BillingAccount>createBillingAccount(@Valid BillingAccount billingAccount) Deprecated.org.springframework.http.ResponseEntity<Void>Deprecated.protected BaBillingAccountServiceDeprecated.protected BaCreateBillingAccountValidatorDeprecated.protected BaPaginationServiceDeprecated.protected BaGenericServiceDeprecated.protected org.springframework.transaction.support.TransactionTemplateDeprecated.protected de.hybris.platform.servicelayer.user.UserServiceDeprecated.org.springframework.http.ResponseEntity<List<BillingAccount>>listBillingAccount(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String paymentStatus) Deprecated.org.springframework.http.ResponseEntity<BillingAccount>patchBillingAccount(String id, @Valid BillingAccount billingAccount) Deprecated.org.springframework.http.ResponseEntity<BillingAccount>retrieveBillingAccount(String id, @Valid String fields) Deprecated.Methods inherited from class de.hybris.platform.billingaccounttmfwebservices.v1.controllers.BaBaseController
filter, getDataMapper, getI18nService, getMessageSource, getObjectMapper, getQueryStringWithoutOffsetAndLimit, getUnsuccessfulResponse, getUnsuccessfulResponse, handleInternalError, handleModelNotFoundException, hasRole, init, sanitize, sanitizeQueryString, validate
-
Constructor Details
-
BaBillingAccountController
@Autowired public BaBillingAccountController(javax.servlet.http.HttpServletRequest request) Deprecated.
-
-
Method Details
-
createBillingAccount
@RequestMapping(value="/billingAccount", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<BillingAccount> createBillingAccount(@Valid @RequestBody @Valid BillingAccount billingAccount) Deprecated.- Specified by:
createBillingAccountin interfaceBillingAccountApi
-
deleteBillingAccount
@RequestMapping(value="/billingAccount/{id:.+}", produces="application/json;charset=utf-8", method=DELETE) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<Void> deleteBillingAccount(@PathVariable("id") String id) Deprecated.- Specified by:
deleteBillingAccountin interfaceBillingAccountApi
-
listBillingAccount
@RequestMapping(value="/billingAccount", produces="application/json", method=GET) public org.springframework.http.ResponseEntity<List<BillingAccount>> listBillingAccount(@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="paymentStatus",required=false) @Valid String paymentStatus) Deprecated.- Specified by:
listBillingAccountin interfaceBillingAccountApi
-
patchBillingAccount
@RequestMapping(value="/billingAccount/{id:.+}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<BillingAccount> patchBillingAccount(@PathVariable("id") String id, @Valid @RequestBody @Valid BillingAccount billingAccount) Deprecated.- Specified by:
patchBillingAccountin interfaceBillingAccountApi
-
retrieveBillingAccount
@RequestMapping(value="/billingAccount/{id:.+}", produces="application/json", method=GET) public org.springframework.http.ResponseEntity<BillingAccount> retrieveBillingAccount(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields) Deprecated.- Specified by:
retrieveBillingAccountin interfaceBillingAccountApi
-
getBaBillingAccountService
Deprecated. -
getBaPaginationService
Deprecated. -
getGenericService
Deprecated. -
getUserService
protected de.hybris.platform.servicelayer.user.UserService getUserService()Deprecated. -
getBaCreateBillingAccountValidator
Deprecated. -
getTxTemplate
protected org.springframework.transaction.support.TransactionTemplate getTxTemplate()Deprecated.
-