Schnittstelle ArchiveController

Alle bekannten Implementierungsklassen:
ArchiveControllerDecorator, ProductArchiveControllerImpl

public interface ArchiveController
No description (Generated with springmvc-raml-parser v.2.0.5)
  • Methodendetails

    • getArchives

      org.springframework.http.ResponseEntity<List<RestProductArchive>> getArchives(String code)
      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

      org.springframework.http.ResponseEntity<RestProductArchive> getArchiveById(Long id)
      Find the product archive with the given ID
    • deleteArchiveById

      org.springframework.http.ResponseEntity<?> deleteArchiveById(Long id)
      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.