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 Typ
    Methode
    Beschreibung
    org.springframework.http.ResponseEntity<RestJob>
    cancelJob(String id, org.springframework.http.HttpHeaders httpHeaders)
    Cancel job of id
    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
    org.springframework.http.ResponseEntity<RestJob>
    getJob(String name, org.springframework.http.HttpHeaders httpHeaders)
    Get production planner job
    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
    org.springframework.http.ResponseEntity<RestJobGraph>
    graphJobSteps(String id, org.springframework.http.HttpHeaders httpHeaders)
    Dependencies of all job steps of job
    org.springframework.http.ResponseEntity<RestJob>
    resumeJob(String id, org.springframework.http.HttpHeaders httpHeaders)
    Resume job of id
    org.springframework.http.ResponseEntity<RestJob>
    retryJob(String id, org.springframework.http.HttpHeaders httpHeaders)
    Retry job of id
    org.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