Package de.dlr.proseo.procmgr.rest
Schnittstelle ProcessorController
- Alle bekannten Implementierungsklassen:
ProcessorControllerDecorator
,ProcessorControllerImpl
public interface ProcessorController
No description
(Generated with springmvc-raml-parser v.2.0.5)
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungorg.springframework.http.ResponseEntity
<?> countProcessors
(String mission, String processorName, String processorVersion) Count the processors matching the specified mission, processor name, and processor version.org.springframework.http.ResponseEntity
<RestProcessor> createProcessor
(@Valid RestProcessor restProcessor) Create a new processor (version)org.springframework.http.ResponseEntity
<?> Delete a processor by IDorg.springframework.http.ResponseEntity
<RestProcessor> getProcessorById
(Long id) Get a processor by IDorg.springframework.http.ResponseEntity
<List<RestProcessor>> getProcessors
(String mission, String processorName, String processorVersion, Integer recordFrom, Integer recordTo) Get processors by mission, name and version (user-defined version, not database version)org.springframework.http.ResponseEntity
<RestProcessor> modifyProcessor
(Long id, RestProcessor restProcessor) Update a processor by ID
-
Methodendetails
-
getProcessors
org.springframework.http.ResponseEntity<List<RestProcessor>> getProcessors(String mission, String processorName, String processorVersion, Integer recordFrom, Integer recordTo) Get processors by mission, name and version (user-defined version, not database version) -
createProcessor
org.springframework.http.ResponseEntity<RestProcessor> createProcessor(@Valid @Valid RestProcessor restProcessor) Create a new processor (version) -
countProcessors
org.springframework.http.ResponseEntity<?> countProcessors(String mission, String processorName, String processorVersion) Count the processors matching the specified mission, processor name, and processor version. -
getProcessorById
Get a processor by ID -
deleteProcessorById
Delete a processor by ID -
modifyProcessor
org.springframework.http.ResponseEntity<RestProcessor> modifyProcessor(Long id, RestProcessor restProcessor) Update a processor by ID
-