Interface ProcessTypeManagementApi
- All Known Implementing Classes:
TmaProcessTypeManagementApiController
@Generated(value="de.hybris.platform.b2ctelcotmfwebservices.swagger.TelcoCodegen",
date="2022-10-21T20:34:47.671Z")
@Validated
@RequestMapping("")
public interface ProcessTypeManagementApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<ProcessType>>listProcessType(@Valid String fields) org.springframework.http.ResponseEntity<List<QualifiedProcessType>>listQualifiedProcessType(@NotNull @Valid String relatedPartyPeriodId, @Valid String fields)
-
Method Details
-
listProcessType
@RequestMapping(value="/processTypeManagement/processType", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<ProcessType>> listProcessType(@Valid @RequestParam(value="fields",required=false) @Valid String fields) -
listQualifiedProcessType
@RequestMapping(value="/processTypeManagement/qualifiedProcessType", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<QualifiedProcessType>> listQualifiedProcessType(@NotNull @Valid @RequestParam(value="relatedParty.Id",required=true) @NotNull @Valid String relatedPartyPeriodId, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-