Interface AgreementSpecificationApi

All Known Implementing Classes:
AgrAgreementsSpecificationsController

public interface AgreementSpecificationApi
Interface handling operations for AgreementSpecification.
Since:
2302
  • 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 @Valid AgreementSpecification agreementSpecification)
    • deleteAgreementSpecification

      @RequestMapping(value="/agreementSpecification/{id}", produces="application/json;charset=utf-8", method=DELETE) org.springframework.http.ResponseEntity<Void> deleteAgreementSpecification(@PathVariable("id") String id)
    • listAgreementSpecification

      @RequestMapping(value="/agreementSpecification", produces="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 @Valid AgreementSpecification agreementSpecification)
    • retrieveAgreementSpecification

      @RequestMapping(value="/agreementSpecification/{id}", produces="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)