org.springframework.data.domain.Page<CommunityRest> |
CommunityRestRepository.findAllTop(org.springframework.data.domain.Pageable pageable) |
|
org.springframework.data.domain.Page<CollectionRest> |
CollectionRestRepository.findAuthorized(org.springframework.data.domain.Pageable pageable) |
|
org.springframework.data.domain.Page<CollectionRest> |
CollectionRestRepository.findAuthorizedByCommunity(UUID communityUuid,
org.springframework.data.domain.Pageable pageable) |
|
SubmissionDefinitionRest |
SubmissionDefinitionRestRepository.findByCollection(UUID collectionUuid) |
|
WorkflowDefinitionRest |
WorkflowDefinitionRestRepository.findByCollection(UUID collectionId) |
GET endpoint that returns the workflow definition that applies to a specific collection eventually fallback
to the default configuration.
|
EPersonRest |
EPersonRestRepository.findByEmail(String email) |
Find the eperson with the provided email address if any.
|
org.springframework.data.domain.Page<ResourcePolicyRest> |
ResourcePolicyRestRepository.findByEPerson(UUID epersonUuid,
UUID resourceUuid,
org.springframework.data.domain.Pageable pageable) |
Find the resource policies matching uuid of the eperson and/or the one specified resource object
|
org.springframework.data.domain.Page<ResourcePolicyRest> |
ResourcePolicyRestRepository.findByGroup(UUID groupUuid,
UUID resourceUuid,
org.springframework.data.domain.Pageable pageable) |
Find the resource policies matching uuid of the group and/or the ones specified resource object
|
WorkflowItemRest |
WorkflowItemRestRepository.findByItemUuid(UUID itemUuid,
org.springframework.data.domain.Pageable pageable) |
This is a search method that will return the WorkflowItemRest object found through the UUID of an item.
|
WorkspaceItemRest |
WorkspaceItemRestRepository.findByItemUuid(UUID itemUuid,
org.springframework.data.domain.Pageable pageable) |
This is a search method that will return the WorkspaceItemRest object found through the UUID of an item.
|
org.springframework.data.domain.Page<RelationshipRest> |
RelationshipRestRepository.findByLabel(String label,
UUID dsoId,
org.springframework.data.domain.Pageable pageable) |
This method will find all the Relationship objects that a RelationshipType that corresponds to the given Label
It's also possible to pass a DSO along to this method with a parameter which will only return Relationship
objects that have this DSO as leftItem or rightItem.
|
org.springframework.data.domain.Page<EPersonRest> |
EPersonRestRepository.findByMetadata(String query,
org.springframework.data.domain.Pageable pageable) |
Find the epersons matching the query parameter.
|
org.springframework.data.domain.Page<GroupRest> |
GroupRestRepository.findByMetadata(String query,
org.springframework.data.domain.Pageable pageable) |
Find the groups matching the query parameter.
|
org.springframework.data.domain.Page<AuthorizationRest> |
AuthorizationRestRepository.findByObject(String uri,
UUID epersonUuid,
org.springframework.data.domain.Pageable pageable) |
It returns the list of matching available authorizations granted to the specified eperson or to the anonymous
user.
|
AuthorizationRest |
AuthorizationRestRepository.findByObjectAndFeature(String uri,
UUID epersonUuid,
String featureName,
org.springframework.data.domain.Pageable pageable) |
It returns the authorization related to the requested feature if granted to the specified eperson or to the
anonymous user.
|
org.springframework.data.domain.Page<ResourcePolicyRest> |
ResourcePolicyRestRepository.findByResource(UUID resourceUuid,
String action,
org.springframework.data.domain.Pageable pageable) |
Find the resource policies matching the uuid of the resource object and/or the specified action
|
org.springframework.data.domain.Page<AuthorizationFeatureRest> |
AuthorizationFeatureRestRepository.findByResourceType(String type,
org.springframework.data.domain.Pageable pageable) |
|
org.springframework.data.domain.Page<MetadataFieldRest> |
MetadataFieldRestRepository.findBySchema(String schemaName,
org.springframework.data.domain.Pageable pageable) |
|
org.springframework.data.domain.Page<WorkflowItemRest> |
WorkflowItemRestRepository.findBySubmitter(UUID submitterID,
org.springframework.data.domain.Pageable pageable) |
|
org.springframework.data.domain.Page<WorkspaceItemRest> |
WorkspaceItemRestRepository.findBySubmitter(UUID submitterID,
org.springframework.data.domain.Pageable pageable) |
|
org.springframework.data.domain.Page<ClaimedTaskRest> |
ClaimedTaskRestRepository.findByUser(UUID userID,
org.springframework.data.domain.Pageable pageable) |
|
org.springframework.data.domain.Page<PoolTaskRest> |
PoolTaskRestRepository.findByUser(UUID userID,
org.springframework.data.domain.Pageable pageable) |
|