Package de.dlr.proseo.model.rest
Schnittstelle OrderjobController
- Alle bekannten Implementierungsklassen:
OrderjobControllerDecorator
,OrderjobControllerImpl
public interface OrderjobController
No description
(Generated with springmvc-raml-parser v.2.0.5)
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungorg.springframework.http.ResponseEntity
<?> Retrieves the number of production planner jobs based on the specified states and order ID.getJobs
(Long orderid, Integer recordFrom, Integer recordTo, Boolean logs, String[] state, String[] orderBy) Retrieves production planner jobs, optionally filtered by job state and/or order ID.org.springframework.http.ResponseEntity
<?> Retrieves the index of a job in an ordered list of all jobs of an order.
-
Methodendetails
-
getJobs
org.springframework.http.ResponseEntity<List<RestJob>> getJobs(Long orderid, Integer recordFrom, Integer recordTo, Boolean logs, String[] state, String[] orderBy) Retrieves production planner jobs, optionally filtered by job state and/or order ID. -
countJobs
Retrieves the number of production planner jobs based on the specified states and order ID. -
indexOfJob
org.springframework.http.ResponseEntity<?> indexOfJob(Long orderid, Long jobid, Long jobstepid, String[] state, String[] orderBy) Retrieves the index of a job in an ordered list of all jobs of an order.
-