Uses of Class
de.dlr.proseo.procmgr.rest.model.RestWorkflow
Packages that use RestWorkflow
Package
Description
Classes implementing the REST interface for the prosEO Processor Manager component
Utility classes for the prosEO Processor Manager component
-
Uses of RestWorkflow in de.dlr.proseo.procmgr.rest
Methods in de.dlr.proseo.procmgr.rest that return RestWorkflowModifier and TypeMethodDescriptionWorkflowMgr.createWorkflow(RestWorkflow restWorkflow) Create a new workflowWorkflowMgr.getWorkflowById(Long id) Get a workflow by IDWorkflowMgr.modifyWorkflow(Long id, RestWorkflow restWorkflow) Update a workflow by IDMethods in de.dlr.proseo.procmgr.rest that return types with arguments of type RestWorkflowModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowController.createWorkflow(@Valid RestWorkflow restWorkflow) Create a workflow from the given Json objectorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerDecorator.createWorkflow(@Valid RestWorkflow restWorkflow) Create a workflow from the given Json objectorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerImpl.createWorkflow(@Valid RestWorkflow workflow) Create a workflow from the given Json objectorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowController.getWorkflowById(Long id) Find the workflow with the given IDorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerDecorator.getWorkflowById(Long id) Find the workflow with the given IDorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerImpl.getWorkflowById(Long id) Find the workflow with the given IDorg.springframework.http.ResponseEntity<List<RestWorkflow>> WorkflowController.getWorkflows(String mission, String name, String workflowVersion, String inputProductClass, String configuredProcessor, Boolean enabled, Integer recordFrom, Integer recordTo, String[] orderBy) Get a list of all workflows with the specified mission, workflow name, workflow version, input product class and configured processororg.springframework.http.ResponseEntity<List<RestWorkflow>> WorkflowControllerDecorator.getWorkflows(String mission, String name, String workflowVersion, String inputProductClass, String configuredProcessor, Boolean enabled, Integer recordFrom, Integer recordTo, String[] orderBy) Get a list of all workflows with the specified mission, workflow name, workflow version, input product class and configured processororg.springframework.http.ResponseEntity<List<RestWorkflow>> WorkflowControllerImpl.getWorkflows(String missionCode, String workflowName, String workflowVersion, String inputProductClass, String configuredProcessor, Boolean enabled, Integer recordFrom, Integer recordTo, String[] orderBy) Get a list of all workflows with the specified mission, workflow name, workflow version, input product class and configured processorWorkflowMgr.getWorkflows(String missionCode, String workflowName, String workflowVersion, String inputProductClass, String configuredProcessor, Boolean enabled, Integer recordFrom, Integer recordTo, String[] orderBy) Get workflows by mission, name and version (user-defined version, not database version)org.springframework.http.ResponseEntity<RestWorkflow> WorkflowController.modifyWorkflow(Long id, RestWorkflow restWorkflow) Update the workflow with the given ID with the attribute values of the given Json object.org.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerDecorator.modifyWorkflow(Long id, RestWorkflow restWorkflow) Update the workflow with the given ID with the attribute values of the given Json object.org.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerImpl.modifyWorkflow(Long id, RestWorkflow workflow) Update the workflow with the given ID with the attribute values of the given Json object.Methods in de.dlr.proseo.procmgr.rest with parameters of type RestWorkflowModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowController.createWorkflow(@Valid RestWorkflow restWorkflow) Create a workflow from the given Json objectorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerDecorator.createWorkflow(@Valid RestWorkflow restWorkflow) Create a workflow from the given Json objectorg.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerImpl.createWorkflow(@Valid RestWorkflow workflow) Create a workflow from the given Json objectWorkflowMgr.createWorkflow(RestWorkflow restWorkflow) Create a new workfloworg.springframework.http.ResponseEntity<RestWorkflow> WorkflowController.modifyWorkflow(Long id, RestWorkflow restWorkflow) Update the workflow with the given ID with the attribute values of the given Json object.org.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerDecorator.modifyWorkflow(Long id, RestWorkflow restWorkflow) Update the workflow with the given ID with the attribute values of the given Json object.org.springframework.http.ResponseEntity<RestWorkflow> WorkflowControllerImpl.modifyWorkflow(Long id, RestWorkflow workflow) Update the workflow with the given ID with the attribute values of the given Json object.WorkflowMgr.modifyWorkflow(Long id, RestWorkflow restWorkflow) Update a workflow by ID -
Uses of RestWorkflow in de.dlr.proseo.procmgr.rest.model
Methods in de.dlr.proseo.procmgr.rest.model that return RestWorkflowModifier and TypeMethodDescriptionstatic RestWorkflowWorkflowUtil.toRestWorkflow(Workflow modelWorkflow) Convert a prosEO model workflow into a REST workflowMethods in de.dlr.proseo.procmgr.rest.model with parameters of type RestWorkflowModifier and TypeMethodDescriptionstatic WorkflowWorkflowUtil.toModelWorkflow(RestWorkflow restWorkflow) Convert a REST workflow into a prosEO model workflow (scalar and embedded attributes only, no object references)