Package de.dlr.proseo.archivemgr.rest
Schnittstelle ArchiveController
- Alle bekannten Implementierungsklassen:
ArchiveControllerDecorator
,ProductArchiveControllerImpl
public interface ArchiveController
No description
(Generated with springmvc-raml-parser v.2.0.5)
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungorg.springframework.http.ResponseEntity
<?> countArchives
(Long id, String code, String name, String archiveType) Count the product archive matching the specified name, archive type.org.springframework.http.ResponseEntity
<RestProductArchive> createArchive
(@Valid RestProductArchive restProductArchive) Create a product archive from the given Json objectorg.springframework.http.ResponseEntity
<?> Delete a product archive by IDorg.springframework.http.ResponseEntity
<RestProductArchive> getArchiveById
(Long id) Find the product archive with the given IDorg.springframework.http.ResponseEntity
<List<RestProductArchive>> getArchives
(Long id, String code, String name, String archiveType, Integer recordFrom, Integer recordTo) List of product archives with search criteriaorg.springframework.http.ResponseEntity
<RestProductArchive> modifyArchive
(Long id, RestProductArchive restProductArchive) Update the product archive with the given ID with the attribute values of the given Json object.
-
Methodendetails
-
getArchives
org.springframework.http.ResponseEntity<List<RestProductArchive>> getArchives(Long id, String code, String name, String archiveType, Integer recordFrom, Integer recordTo) List of product archives with search criteria -
createArchive
org.springframework.http.ResponseEntity<RestProductArchive> createArchive(@Valid @Valid RestProductArchive restProductArchive) Create a product archive from the given Json object -
countArchives
org.springframework.http.ResponseEntity<?> countArchives(Long id, String code, String name, String archiveType) Count the product archive matching the specified name, archive type. -
getArchiveById
Find the product archive with the given ID -
deleteArchiveById
Delete a product archive by ID -
modifyArchive
org.springframework.http.ResponseEntity<RestProductArchive> modifyArchive(Long id, RestProductArchive restProductArchive) Update the product archive with the given ID with the attribute values of the given Json object.
-