Interface ProcessTypeManagementApi
- All Known Implementing Classes:
TmaProcessTypeManagementApiController
public interface ProcessTypeManagementApi
Interface handling operations for
ProcessType.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<ProcessType>>listProcessType(@Valid String fields) org.springframework.http.ResponseEntity<List<QualifiedProcessType>>listQualifiedProcessType(@NotNull @Valid String relatedPartyId, @Valid String fields)
-
Method Details
-
listProcessType
@RequestMapping(value="/processTypeManagement/processType", produces="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", method=GET) org.springframework.http.ResponseEntity<List<QualifiedProcessType>> listQualifiedProcessType(@NotNull @Valid @RequestParam(value="relatedParty.Id",required=true) @NotNull @Valid String relatedPartyId, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-