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
<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
(String code) List of all product archives with no 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
List of all product archives with no search criteria -
createArchive
org.springframework.http.ResponseEntity<RestProductArchive> createArchive(@Valid @Valid RestProductArchive restProductArchive) Create a product archive from the given Json object -
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.
-