Class EntityRelationController


  • @RestController
    public class EntityRelationController
    extends Object
    • Constructor Detail

      • EntityRelationController

        public EntityRelationController​(EntityRelationService entityRelationservice)
    • Method Detail

      • getEntitiesRelations

        @GetMapping(value="/v5/entities/relations",
                    produces="application/json")
        public de.digitalcollections.model.paging.PageResponse<de.digitalcollections.model.identifiable.entity.relation.EntityRelation> getEntitiesRelations​(@RequestParam(name="pageNumber",required=false,defaultValue="0")
                                                                                                                                                             int pageNumber,
                                                                                                                                                             @RequestParam(name="pageSize",required=false,defaultValue="25")
                                                                                                                                                             int pageSize,
                                                                                                                                                             @RequestParam(name="predicate",required=false)
                                                                                                                                                             String predicate)