Package de.dlr.proseo.ordermgr.rest
Klasse OrderjobstepControllerImpl
java.lang.Object
de.dlr.proseo.ordermgr.rest.OrderjobstepControllerImpl
- Alle implementierten Schnittstellen:
OrderjobstepController
Controller for the prosEO Order Manager, implements the services required to manage job steps.
- Autor:
- Ernst Melchinger
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungorg.springframework.http.ResponseEntity
<RestJobStep> getJobStep
(String name) Get a production planner job step identified by name or id.org.springframework.http.ResponseEntity
<List<RestJobStep>> getJobSteps
(Status status, String mission, Long last) Get production planner job steps by status, mission, and latest of size "last".
-
Konstruktordetails
-
OrderjobstepControllerImpl
public OrderjobstepControllerImpl()
-
-
Methodendetails
-
getJobSteps
@Transactional(isolation=REPEATABLE_READ, readOnly=true) public org.springframework.http.ResponseEntity<List<RestJobStep>> getJobSteps(Status status, String mission, Long last) Get production planner job steps by status, mission, and latest of size "last".- Angegeben von:
getJobSteps
in SchnittstelleOrderjobstepController
- Parameter:
status
- The status of the job steps to retrievemission
- The mission for which to retrieve the job stepslast
- The number of latest job steps to retrieve- Gibt zurück:
- A ResponseEntity containing the list of RestJobStep objects and the HTTP status code
-
getJobStep
@Transactional(isolation=REPEATABLE_READ, readOnly=true) public org.springframework.http.ResponseEntity<RestJobStep> getJobStep(String name) Get a production planner job step identified by name or id.- Angegeben von:
getJobStep
in SchnittstelleOrderjobstepController
- Parameter:
name
- The name or id of the job step to retrieve- Gibt zurück:
- A ResponseEntity containing the RestJobStep object and the HTTP status code
-