Package de.dlr.proseo.model.rest
Interface OrdertemplateController
- All Known Implementing Classes:
OrdertemplateControllerDecorator,OrderTemplateControllerImpl
public interface OrdertemplateController
No description
(Generated with springmvc-raml-parser v.2.0.5)
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<?> countOrderTemplates(String mission, String identifier) Count order templates filtered by mission, identifier and id not equal nid.org.springframework.http.ResponseEntity<?> countSelectOrderTemplates(String mission, String name, String[] productClass, Long recordFrom, Long recordTo, String[] orderBy) Calculate the amount of order templates satisfying the selection parameters.org.springframework.http.ResponseEntity<RestOrderTemplate> createOrderTemplate(@Valid RestOrderTemplate restOrderTemplate) Create an order template from the given JSON objectorg.springframework.http.ResponseEntity<?> Delete an order template by IDorg.springframework.http.ResponseEntity<List<RestOrderTemplate>> getAndSelectOrderTemplates(String mission, String name, String[] productClass, Long recordFrom, Long recordTo, String[] orderBy) Retrieve a list of order templates satisfying the selection parametersorg.springframework.http.ResponseEntity<RestOrderTemplate> Find the order template with the given IDorg.springframework.http.ResponseEntity<List<RestOrderTemplate>> getOrderTemplates(String mission, String name, String[] productClasses) List of all order templates filtered by mission, identifier, productClassesorg.springframework.http.ResponseEntity<RestOrderTemplate> modifyOrderTemplate(Long id, RestOrderTemplate restOrderTemplate) Update the order template with the given ID with the attribute values of the given JSON object.
-
Method Details
-
getOrderTemplates
org.springframework.http.ResponseEntity<List<RestOrderTemplate>> getOrderTemplates(String mission, String name, String[] productClasses) List of all order templates filtered by mission, identifier, productClasses -
createOrderTemplate
org.springframework.http.ResponseEntity<RestOrderTemplate> createOrderTemplate(@Valid @Valid RestOrderTemplate restOrderTemplate) Create an order template from the given JSON object -
countOrderTemplates
Count order templates filtered by mission, identifier and id not equal nid. -
countSelectOrderTemplates
org.springframework.http.ResponseEntity<?> countSelectOrderTemplates(String mission, String name, String[] productClass, Long recordFrom, Long recordTo, String[] orderBy) Calculate the amount of order templates satisfying the selection parameters. Mission code is mandatory. -
getAndSelectOrderTemplates
org.springframework.http.ResponseEntity<List<RestOrderTemplate>> getAndSelectOrderTemplates(String mission, String name, String[] productClass, Long recordFrom, Long recordTo, String[] orderBy) Retrieve a list of order templates satisfying the selection parameters -
getOrderTemplateById
Find the order template with the given ID -
deleteOrderTemplateById
Delete an order template by ID -
modifyOrderTemplate
org.springframework.http.ResponseEntity<RestOrderTemplate> modifyOrderTemplate(Long id, RestOrderTemplate restOrderTemplate) Update the order template with the given ID with the attribute values of the given JSON object.
-