java.lang.Object
de.digitalcollections.commons.springmvc.controller.AbstractController

@RestController public class FamilynamesAPIController extends AbstractIdentifiablesController<de.digitalcollections.model.identifiable.agent.FamilyName,CudamiFamilyNamesClient>
Controller for all public "FamilyName" endpoints (API).
  • Constructor Details

  • Method Details

    • create

      @GetMapping("/api/familynames/new") @ResponseBody public de.digitalcollections.model.identifiable.agent.FamilyName create() throws de.digitalcollections.model.exception.TechnicalException
      Throws:
      de.digitalcollections.model.exception.TechnicalException
    • find

      @GetMapping("/api/familynames") @ResponseBody public BTResponse<de.digitalcollections.model.identifiable.agent.FamilyName> find(@RequestParam(name="offset",required=false,defaultValue="0") int offset, @RequestParam(name="limit",required=false,defaultValue="10") int limit, @RequestParam(name="search",required=false) String searchTerm, @RequestParam(name="sort",required=false,defaultValue="label") String sortProperty, @RequestParam(name="order",required=false,defaultValue="asc") String sortOrder, @RequestParam(name="dataLanguage",required=false) String dataLanguage) throws de.digitalcollections.model.exception.TechnicalException, ServiceException
      Throws:
      de.digitalcollections.model.exception.TechnicalException
      ServiceException
    • getByUuid

      @GetMapping("/api/familynames/{uuid:^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$}") @ResponseBody public de.digitalcollections.model.identifiable.agent.FamilyName getByUuid(@PathVariable UUID uuid) throws de.digitalcollections.model.exception.TechnicalException
      Throws:
      de.digitalcollections.model.exception.TechnicalException
    • save

      @PostMapping("/api/familynames") public org.springframework.http.ResponseEntity save(@RequestBody de.digitalcollections.model.identifiable.agent.FamilyName familyName)
    • update

      @PutMapping("/api/familynames/{uuid:^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$}") public org.springframework.http.ResponseEntity update(@PathVariable UUID uuid, @RequestBody de.digitalcollections.model.identifiable.agent.FamilyName familyName)