| Package | Description |
|---|---|
| org.dspace.content |
Provides an API for reading and manipulating content in the DSpace system.
|
| org.dspace.content.service |
| Modifier and Type | Method and Description |
|---|---|
Entity |
EntityServiceImpl.findByItemId(Context context,
UUID itemId) |
| Modifier and Type | Method and Description |
|---|---|
List<RelationshipType> |
EntityServiceImpl.getAllRelationshipTypes(Context context,
Entity entity) |
List<Relationship> |
EntityServiceImpl.getLeftRelations(Context context,
Entity entity) |
List<RelationshipType> |
EntityServiceImpl.getLeftRelationshipTypes(Context context,
Entity entity) |
List<Relationship> |
EntityServiceImpl.getRightRelations(Context context,
Entity entity) |
List<RelationshipType> |
EntityServiceImpl.getRightRelationshipTypes(Context context,
Entity entity) |
EntityType |
EntityServiceImpl.getType(Context context,
Entity entity) |
| Modifier and Type | Method and Description |
|---|---|
Entity |
EntityService.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.
|
| Modifier and Type | Method and Description |
|---|---|
List<RelationshipType> |
EntityService.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 variables
|
List<Relationship> |
EntityService.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 along
|
List<RelationshipType> |
EntityService.getLeftRelationshipTypes(Context context,
Entity entity)
Retrieves the list of relationships that have a relationshiptype that contains the EntityType for the given
Entity
in the leftEntityType
|
List<Relationship> |
EntityService.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 along
|
List<RelationshipType> |
EntityService.getRightRelationshipTypes(Context context,
Entity entity)
Retrieves the list of relationships that have a relationshiptype that contains the EntityType for the given
Entity
in the rightEntityType
|
EntityType |
EntityService.getType(Context context,
Entity entity)
Returns the EntityType for the Item that is attached to the Entity that is passed along to this method.
|
Copyright © 2019 DuraSpace. All rights reserved.