Package de.dlr.proseo.model.rest
Schnittstelle JobController
- Alle bekannten Implementierungsklassen:
JobControllerDecorator
,JobControllerImpl
public interface JobController
No description
(Generated with springmvc-raml-parser v.2.0.5)
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungorg.springframework.http.ResponseEntity
<RestJob> Cancel job of idorg.springframework.http.ResponseEntity
<?> Get number of jobs, possibly filtered by state and processing orderorg.springframework.http.ResponseEntity
<RestJob> Get production planner jobgetJobs
(String state, Long orderid, Long recordFrom, Long recordTo, Boolean logs, String[] orderBy, org.springframework.http.HttpHeaders httpHeaders) Get production planner jobs by stateorg.springframework.http.ResponseEntity
<RestJobGraph> graphJobSteps
(String id, org.springframework.http.HttpHeaders httpHeaders) Dependencies of all job steps of joborg.springframework.http.ResponseEntity
<RestJob> Resume job of idorg.springframework.http.ResponseEntity
<RestJob> Retry job of idorg.springframework.http.ResponseEntity
<RestJob> suspendJob
(String id, Boolean force, org.springframework.http.HttpHeaders httpHeaders) Suspend job of id
-
Methodendetails
-
getJobs
org.springframework.http.ResponseEntity<List<RestJob>> getJobs(String state, Long orderid, Long recordFrom, Long recordTo, Boolean logs, String[] orderBy, org.springframework.http.HttpHeaders httpHeaders) Get production planner jobs by state -
countJobs
org.springframework.http.ResponseEntity<?> countJobs(String state, Long orderid, org.springframework.http.HttpHeaders httpHeaders) Get number of jobs, possibly filtered by state and processing order -
getJob
org.springframework.http.ResponseEntity<RestJob> getJob(String name, org.springframework.http.HttpHeaders httpHeaders) Get production planner job -
resumeJob
org.springframework.http.ResponseEntity<RestJob> resumeJob(String id, org.springframework.http.HttpHeaders httpHeaders) Resume job of id -
cancelJob
org.springframework.http.ResponseEntity<RestJob> cancelJob(String id, org.springframework.http.HttpHeaders httpHeaders) Cancel job of id -
suspendJob
org.springframework.http.ResponseEntity<RestJob> suspendJob(String id, Boolean force, org.springframework.http.HttpHeaders httpHeaders) Suspend job of id -
retryJob
org.springframework.http.ResponseEntity<RestJob> retryJob(String id, org.springframework.http.HttpHeaders httpHeaders) Retry job of id -
graphJobSteps
org.springframework.http.ResponseEntity<RestJobGraph> graphJobSteps(String id, org.springframework.http.HttpHeaders httpHeaders) Dependencies of all job steps of job
-