Class AgrAgreementsSpecificationsController
java.lang.Object
de.hybris.platform.agreementtmfwebservices.v1.controllers.AgrBaseController
de.hybris.platform.agreementtmfwebservices.v1.controllers.AgrAgreementsSpecificationsController
- All Implemented Interfaces:
AgreementSpecificationApi
@Controller
@Deprecated(since="2208")
public class AgrAgreementsSpecificationsController
extends AgrBaseController
implements AgreementSpecificationApi
Deprecated.
2208
Controller exposing operations related to agreements specifications.
-
Constructor Summary
ConstructorsConstructorDescriptionAgrAgreementsSpecificationsController(javax.servlet.http.HttpServletRequest request) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AgreementSpecification>createAgreementSpecification(@Valid AgreementSpecification agreementSpecification) Deprecated.org.springframework.http.ResponseEntity<Void>Deprecated.protected AgrAgreementSpecificationCreateValidatorDeprecated.protected AgrAgreementSpecificationServiceDeprecated.protected org.springframework.transaction.support.TransactionTemplateDeprecated.org.springframework.http.ResponseEntity<List<AgreementSpecification>>listAgreementSpecification(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String lifecycleStatus) Deprecated.org.springframework.http.ResponseEntity<AgreementSpecification>patchAgreementSpecification(String id, @Valid AgreementSpecification agreementSpecification) Deprecated.org.springframework.http.ResponseEntity<AgreementSpecification>retrieveAgreementSpecification(String id, @Valid String fields) Deprecated.Methods inherited from class de.hybris.platform.agreementtmfwebservices.v1.controllers.AgrBaseController
filter, getDataMapper, getI18nService, getMessageSource, getObjectMapper, getQueryStringWithoutOffsetAndLimit, getUnsuccessfulResponse, getUnsuccessfulResponse, handleInternalError, handleModelNotFoundException, hasRole, init, sanitize, validate
-
Constructor Details
-
AgrAgreementsSpecificationsController
@Autowired public AgrAgreementsSpecificationsController(javax.servlet.http.HttpServletRequest request) Deprecated.
-
-
Method Details
-
retrieveAgreementSpecification
@RequestMapping(value="/agreementSpecification/{id}", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<AgreementSpecification> retrieveAgreementSpecification(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields) Deprecated.- Specified by:
retrieveAgreementSpecificationin interfaceAgreementSpecificationApi
-
createAgreementSpecification
@RequestMapping(value="/agreementSpecification", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<AgreementSpecification> createAgreementSpecification(@Valid @RequestBody @Valid AgreementSpecification agreementSpecification) Deprecated.- Specified by:
createAgreementSpecificationin interfaceAgreementSpecificationApi
-
deleteAgreementSpecification
@RequestMapping(value="/agreementSpecification/{id}", produces="application/json;charset=utf-8", method=DELETE) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<Void> deleteAgreementSpecification(@PathVariable("id") String id) Deprecated.- Specified by:
deleteAgreementSpecificationin interfaceAgreementSpecificationApi
-
listAgreementSpecification
@RequestMapping(value="/agreementSpecification", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<List<AgreementSpecification>> listAgreementSpecification(@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="lifecycleStatus",required=false) @Valid String lifecycleStatus) Deprecated.- Specified by:
listAgreementSpecificationin interfaceAgreementSpecificationApi
-
patchAgreementSpecification
@RequestMapping(value="/agreementSpecification/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) @Secured("ROLE_TRUSTED_CLIENT") public org.springframework.http.ResponseEntity<AgreementSpecification> patchAgreementSpecification(@PathVariable("id") String id, @Valid @RequestBody @Valid AgreementSpecification agreementSpecification) Deprecated.- Specified by:
patchAgreementSpecificationin interfaceAgreementSpecificationApi
-
getAgreementSpecificationService
Deprecated. -
getAgrAgreementSpecificationCreateValidator
Deprecated. -
getTxTemplate
protected org.springframework.transaction.support.TransactionTemplate getTxTemplate()Deprecated.
-