Schnittstelle ProcessorController

Alle bekannten Implementierungsklassen:
ProcessorControllerDecorator, ProcessorControllerImpl

public interface ProcessorController
No description (Generated with springmvc-raml-parser v.2.0.5)
  • 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

      org.springframework.http.ResponseEntity<RestProcessor> getProcessorById(Long id)
      Get a processor by ID
    • deleteProcessorById

      org.springframework.http.ResponseEntity<?> deleteProcessorById(Long id)
      Delete a processor by ID
    • modifyProcessor

      org.springframework.http.ResponseEntity<RestProcessor> modifyProcessor(Long id, RestProcessor restProcessor)
      Update a processor by ID