Uses of Class
org.dspace.content.Entity
Packages that use Entity
Package
Description
Provides an API for reading and manipulating content in the DSpace system.
-
Uses of Entity in org.dspace.content
Methods in org.dspace.content that return EntityModifier and TypeMethodDescriptionEntityServiceImpl.findByItemId(Context context, UUID itemId) EntityServiceImpl.findByItemId(Context context, UUID itemId, Integer limit, Integer offset) Methods in org.dspace.content with parameters of type EntityModifier and TypeMethodDescriptionEntityServiceImpl.getAllRelationshipTypes(Context context, Entity entity) EntityServiceImpl.getAllRelationshipTypes(Context context, Entity entity, Integer limit, Integer offset) EntityServiceImpl.getLeftRelations(Context context, Entity entity) EntityServiceImpl.getLeftRelationshipTypes(Context context, Entity entity) EntityServiceImpl.getLeftRelationshipTypes(Context context, Entity entity, boolean isLeft, Integer limit, Integer offset) EntityServiceImpl.getRightRelations(Context context, Entity entity) EntityServiceImpl.getRightRelationshipTypes(Context context, Entity entity) EntityServiceImpl.getRightRelationshipTypes(Context context, Entity entity, boolean isLeft, Integer limit, Integer offset) -
Uses of Entity in org.dspace.content.service
Methods in org.dspace.content.service that return EntityModifier and TypeMethodDescriptionEntityService.findByItemId(Context context, UUID itemId) This will construct an Entity object that will be returned with the Item that matches the ItemID that was passed along as well as a list of relationships for that Item.EntityService.findByItemId(Context context, UUID itemId, Integer limit, Integer offset) This will construct an Entity object that will be returned with the Item that matches the ItemID that was passed along as well as a list of relationships for that Item.Methods in org.dspace.content.service with parameters of type EntityModifier and TypeMethodDescriptionEntityService.getAllRelationshipTypes(Context context, Entity entity) Retrieves the list of relationships that have a relationshiptype that contains the EntityType for the given Entity in either the leftEntityType or the rightEntityType variablesEntityService.getAllRelationshipTypes(Context context, Entity entity, Integer limit, Integer offset) Retrieves the list of relationships that have a relationshiptype that contains the EntityType for the given Entity in either the leftEntityType or the rightEntityType variablesEntityService.getLeftRelations(Context context, Entity entity) Retrieves the list of relationships, which are attached to the Entity object that is passed along, where the left item object of each relationship is equal to the Item object of the Entity object that is passed alongEntityService.getLeftRelationshipTypes(Context context, Entity entity) Retrieves the list of relationships that have a relationshiptype that contains the EntityType for the given Entity in the leftEntityTypeEntityService.getLeftRelationshipTypes(Context context, Entity entity, boolean isLeft, Integer limit, Integer offset) Retrieves the list of relationships that have a relationshiptype that contains the EntityType for the given Entity in the leftEntityTypeEntityService.getRightRelations(Context context, Entity entity) Retrieves the list of relationships, which are attached to the Entity object that is passed along, where the right item object of each relationship is equal to the Item object of the Entity object that is passed alongEntityService.getRightRelationshipTypes(Context context, Entity entity) Retrieves the list of relationships that have a relationshiptype that contains the EntityType for the given Entity in the rightEntityTypeEntityService.getRightRelationshipTypes(Context context, Entity entity, boolean isLeft, Integer limit, Integer offset) Retrieves the list of relationships that have a relationshiptype that contains the EntityType for the given Entity in the rightEntityTypeReturns the EntityType for the Item that is attached to the Entity that is passed along to this method.