Interface AgreementSpecificationApi
- All Known Implementing Classes:
AgrAgreementsSpecificationsController
@Generated(value="de.hybris.platform.agreementtmfwebservices.swagger.AgreementsCodegen",
date="2022-10-21T20:35:14.076Z")
@Validated
@RequestMapping("")
public interface AgreementSpecificationApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AgreementSpecification>createAgreementSpecification(AgreementSpecification agreementSpecification) org.springframework.http.ResponseEntity<Void>org.springframework.http.ResponseEntity<List<AgreementSpecification>>listAgreementSpecification(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String lifecycleStatus) org.springframework.http.ResponseEntity<AgreementSpecification>patchAgreementSpecification(String id, AgreementSpecification agreementSpecification) org.springframework.http.ResponseEntity<AgreementSpecification>retrieveAgreementSpecification(String id, @Valid String fields)
-
Method Details
-
createAgreementSpecification
@RequestMapping(value="/agreementSpecification", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<AgreementSpecification> createAgreementSpecification(@Valid @RequestBody AgreementSpecification agreementSpecification) -
deleteAgreementSpecification
-
listAgreementSpecification
@RequestMapping(value="/agreementSpecification", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) 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) -
patchAgreementSpecification
@RequestMapping(value="/agreementSpecification/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) org.springframework.http.ResponseEntity<AgreementSpecification> patchAgreementSpecification(@PathVariable("id") String id, @Valid @RequestBody AgreementSpecification agreementSpecification) -
retrieveAgreementSpecification
@RequestMapping(value="/agreementSpecification/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<AgreementSpecification> retrieveAgreementSpecification(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-