Uses of Class
org.dspace.content.WorkspaceItem
-
Packages that use WorkspaceItem Package Description org.dspace.content Provides an API for reading and manipulating content in the DSpace system.org.dspace.content.dao org.dspace.content.dao.impl org.dspace.content.packager Provides an API and implementations of content packages, used in the context of ingest (SIP), or dissemination (DIP)org.dspace.content.service org.dspace.discovery org.dspace.discovery.indexobject org.dspace.eperson Provides classes representing e-people and groups of e-people.org.dspace.eperson.service org.dspace.external.service org.dspace.external.service.impl org.dspace.submit.lookup org.dspace.workflow DSpace's workflow systemorg.dspace.workflowbasic org.dspace.xmlworkflow -
-
Uses of WorkspaceItem in org.dspace.content
Fields in org.dspace.content with type parameters of type WorkspaceItem Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<WorkspaceItem,Collection>WorkspaceItem_. collectionstatic javax.persistence.metamodel.SingularAttribute<WorkspaceItem,Item>WorkspaceItem_. itemstatic javax.persistence.metamodel.SingularAttribute<WorkspaceItem,Boolean>WorkspaceItem_. multipleFilesstatic javax.persistence.metamodel.SingularAttribute<WorkspaceItem,Boolean>WorkspaceItem_. multipleTitlesstatic javax.persistence.metamodel.SingularAttribute<WorkspaceItem,Integer>WorkspaceItem_. pageReachedstatic javax.persistence.metamodel.SingularAttribute<WorkspaceItem,Boolean>WorkspaceItem_. publishedBeforestatic javax.persistence.metamodel.SingularAttribute<WorkspaceItem,Integer>WorkspaceItem_. stageReachedstatic javax.persistence.metamodel.ListAttribute<WorkspaceItem,Group>WorkspaceItem_. supervisorGroupsstatic javax.persistence.metamodel.SingularAttribute<WorkspaceItem,Integer>WorkspaceItem_. workspaceItemIdMethods in org.dspace.content that return WorkspaceItem Modifier and Type Method Description WorkspaceItemWorkspaceItemServiceImpl. create(Context context, Collection collection, boolean template)WorkspaceItemWorkspaceItemServiceImpl. create(Context c, WorkflowItem workflowItem)WorkspaceItemWorkspaceItemServiceImpl. find(Context context, int id)WorkspaceItemWorkspaceItemServiceImpl. findByItem(Context context, Item item)Methods in org.dspace.content that return types with arguments of type WorkspaceItem Modifier and Type Method Description List<WorkspaceItem>WorkspaceItemServiceImpl. findAll(Context context)List<WorkspaceItem>WorkspaceItemServiceImpl. findAll(Context context, Integer limit, Integer offset)List<WorkspaceItem>WorkspaceItemServiceImpl. findAllSupervisedItems(Context context)List<WorkspaceItem>WorkspaceItemServiceImpl. findByCollection(Context context, Collection collection)List<WorkspaceItem>SupervisedItemServiceImpl. findbyEPerson(Context context, EPerson ep)List<WorkspaceItem>WorkspaceItemServiceImpl. findByEPerson(Context context, EPerson ep)List<WorkspaceItem>WorkspaceItemServiceImpl. findByEPerson(Context context, EPerson ep, Integer limit, Integer offset)List<WorkspaceItem>WorkspaceItemServiceImpl. findSupervisedItemsByEPerson(Context context, EPerson ePerson)List<WorkspaceItem>SupervisedItemServiceImpl. getAll(Context context)Methods in org.dspace.content with parameters of type WorkspaceItem Modifier and Type Method Description ItemItemServiceImpl. create(Context context, WorkspaceItem workspaceItem)voidWorkspaceItemServiceImpl. deleteAll(Context context, WorkspaceItem workspaceItem)voidWorkspaceItemServiceImpl. deleteWrapper(Context context, WorkspaceItem workspaceItem)voidWorkspaceItemServiceImpl. move(Context context, WorkspaceItem source, Collection fromCollection, Collection toCollection)voidWorkspaceItemServiceImpl. update(Context context, WorkspaceItem workspaceItem) -
Uses of WorkspaceItem in org.dspace.content.dao
Methods in org.dspace.content.dao that return WorkspaceItem Modifier and Type Method Description WorkspaceItemWorkspaceItemDAO. findByItem(Context context, Item i)Methods in org.dspace.content.dao that return types with arguments of type WorkspaceItem Modifier and Type Method Description List<WorkspaceItem>WorkspaceItemDAO. findAll(Context context)List<WorkspaceItem>WorkspaceItemDAO. findAll(Context context, Integer limit, Integer offset)List<WorkspaceItem>WorkspaceItemDAO. findByCollection(Context context, Collection c)List<WorkspaceItem>WorkspaceItemDAO. findByEPerson(Context context, EPerson ep)List<WorkspaceItem>WorkspaceItemDAO. findByEPerson(Context context, EPerson ep, Integer limit, Integer offset)List<WorkspaceItem>WorkspaceItemDAO. findBySupervisedGroupMember(Context context, EPerson ePerson)List<WorkspaceItem>WorkspaceItemDAO. findWithSupervisedGroup(Context context) -
Uses of WorkspaceItem in org.dspace.content.dao.impl
Methods in org.dspace.content.dao.impl that return WorkspaceItem Modifier and Type Method Description WorkspaceItemWorkspaceItemDAOImpl. findByItem(Context context, Item i)Methods in org.dspace.content.dao.impl that return types with arguments of type WorkspaceItem Modifier and Type Method Description List<WorkspaceItem>WorkspaceItemDAOImpl. findAll(Context context)List<WorkspaceItem>WorkspaceItemDAOImpl. findAll(Context context, Integer limit, Integer offset)List<WorkspaceItem>WorkspaceItemDAOImpl. findByCollection(Context context, Collection c)List<WorkspaceItem>WorkspaceItemDAOImpl. findByEPerson(Context context, EPerson ep)List<WorkspaceItem>WorkspaceItemDAOImpl. findByEPerson(Context context, EPerson ep, Integer limit, Integer offset)List<WorkspaceItem>WorkspaceItemDAOImpl. findBySupervisedGroupMember(Context context, EPerson ePerson)List<WorkspaceItem>WorkspaceItemDAOImpl. findWithSupervisedGroup(Context context) -
Uses of WorkspaceItem in org.dspace.content.packager
Methods in org.dspace.content.packager with parameters of type WorkspaceItem Modifier and Type Method Description static ItemPackageUtils. finishCreateItem(Context context, WorkspaceItem wsi, String handle, PackageParameters params)Perform any final tasks on a newly created WorkspaceItem in order to finish ingestion of an Item. -
Uses of WorkspaceItem in org.dspace.content.service
Methods in org.dspace.content.service that return WorkspaceItem Modifier and Type Method Description WorkspaceItemWorkspaceItemService. create(Context context, Collection collection, boolean template)Create a new workspace item, with a new ID.WorkspaceItemWorkspaceItemService. create(Context c, WorkflowItem wfi)WorkspaceItemWorkspaceItemService. find(Context context, int id)Get a workspace item from the database.WorkspaceItemWorkspaceItemService. findByItem(Context context, Item item)Check to see if a particular item is currently still in a user's Workspace.Methods in org.dspace.content.service that return types with arguments of type WorkspaceItem Modifier and Type Method Description List<WorkspaceItem>WorkspaceItemService. findAll(Context context)Get all workspace items in the whole systemList<WorkspaceItem>WorkspaceItemService. findAll(Context context, Integer limit, Integer offset)Get all workspace items in the whole system, paginated.List<WorkspaceItem>WorkspaceItemService. findAllSupervisedItems(Context context)List<WorkspaceItem>WorkspaceItemService. findByCollection(Context context, Collection collection)Get all workspace items for a particular collection.List<WorkspaceItem>SupervisedItemService. findbyEPerson(Context context, EPerson ep)Get items being supervised by given EPersonList<WorkspaceItem>WorkspaceItemService. findByEPerson(Context context, EPerson ep)Get all workspace items for a particular e-person.List<WorkspaceItem>WorkspaceItemService. findByEPerson(Context context, EPerson ep, Integer limit, Integer offset)Get a page of workspace items for a particular e-person.List<WorkspaceItem>WorkspaceItemService. findSupervisedItemsByEPerson(Context context, EPerson ePerson)List<WorkspaceItem>SupervisedItemService. getAll(Context context)Get all workspace items which are being supervisedMethods in org.dspace.content.service with parameters of type WorkspaceItem Modifier and Type Method Description ItemItemService. create(Context context, WorkspaceItem workspaceItem)Create a new item, with a new internal ID.voidWorkspaceItemService. deleteAll(Context context, WorkspaceItem workspaceItem)Delete the workspace item. -
Uses of WorkspaceItem in org.dspace.discovery
Methods in org.dspace.discovery with parameters of type WorkspaceItem Modifier and Type Method Description static List<DiscoveryConfiguration>SearchUtils. getAllDiscoveryConfigurations(WorkspaceItem witem)Return all the discovery configuration applicable to the provided workspace item -
Uses of WorkspaceItem in org.dspace.discovery.indexobject
Methods in org.dspace.discovery.indexobject with parameters of type WorkspaceItem Modifier and Type Method Description ListWorkspaceItemIndexFactoryImpl. getIndexableObjects(Context context, WorkspaceItem object)Constructors in org.dspace.discovery.indexobject with parameters of type WorkspaceItem Constructor Description IndexableWorkspaceItem(WorkspaceItem inProgressSubmission) -
Uses of WorkspaceItem in org.dspace.eperson
Fields in org.dspace.eperson with type parameters of type WorkspaceItem Modifier and Type Field Description static javax.persistence.metamodel.ListAttribute<Group,WorkspaceItem>Group_. supervisedItemsMethods in org.dspace.eperson that return types with arguments of type WorkspaceItem Modifier and Type Method Description List<WorkspaceItem>Group. getSupervisedItems()Methods in org.dspace.eperson with parameters of type WorkspaceItem Modifier and Type Method Description voidSupervisorServiceImpl. add(Context context, Group group, WorkspaceItem workspaceItem, int policy)booleanSupervisorServiceImpl. isOrder(Context context, WorkspaceItem workspaceItem, Group group)voidSupervisorServiceImpl. remove(Context context, WorkspaceItem workspaceItem, Group group) -
Uses of WorkspaceItem in org.dspace.eperson.service
Methods in org.dspace.eperson.service with parameters of type WorkspaceItem Modifier and Type Method Description voidSupervisorService. add(Context context, Group group, WorkspaceItem workspaceItem, int policy)adds a supervision order to the databasebooleanSupervisorService. isOrder(Context context, WorkspaceItem workspaceItem, Group group)finds out if there is a supervision order that matches this set of valuesvoidSupervisorService. remove(Context context, WorkspaceItem workspaceItem, Group group)removes the requested group from the requested workspace item in terms of supervision. -
Uses of WorkspaceItem in org.dspace.external.service
Methods in org.dspace.external.service that return WorkspaceItem Modifier and Type Method Description WorkspaceItemExternalDataService. createWorkspaceItemFromExternalDataObject(Context context, ExternalDataObject externalDataObject, Collection collection)This method will create a WorkspaceItem in the given Collection based on the given ExternalDataObject. -
Uses of WorkspaceItem in org.dspace.external.service.impl
Methods in org.dspace.external.service.impl that return WorkspaceItem Modifier and Type Method Description WorkspaceItemExternalDataServiceImpl. createWorkspaceItemFromExternalDataObject(Context context, ExternalDataObject externalDataObject, Collection collection) -
Uses of WorkspaceItem in org.dspace.submit.lookup
Fields in org.dspace.submit.lookup with type parameters of type WorkspaceItem Modifier and Type Field Description protected List<WorkspaceItem>DSpaceWorkspaceItemOutputGenerator. witemsMethods in org.dspace.submit.lookup that return types with arguments of type WorkspaceItem Modifier and Type Method Description List<WorkspaceItem>DSpaceWorkspaceItemOutputGenerator. getWitems() -
Uses of WorkspaceItem in org.dspace.workflow
Methods in org.dspace.workflow that return WorkspaceItem Modifier and Type Method Description WorkspaceItemWorkflowService. abort(Context c, T wi, EPerson e)abort() aborts a workflow, completely deleting it (administrator do this) (it will basically do a reject from any state - the item ends up back in the user's PersonalWorkspaceWorkspaceItemWorkflowService. sendWorkflowItemBackSubmission(Context c, T workflowItem, EPerson e, String provenance, String rejection_message)Methods in org.dspace.workflow with parameters of type WorkspaceItem Modifier and Type Method Description TWorkflowService. start(Context context, WorkspaceItem wsi)startWorkflow() begins a workflow - in a single transaction do away with the PersonalWorkspace entry and turn it into a WorkflowItem.TWorkflowService. startWithoutNotify(Context c, WorkspaceItem wsi)startWithoutNotify() starts the workflow normally, but disables notifications (useful for large imports,) for the first workflow step - subsequent notifications happen normally -
Uses of WorkspaceItem in org.dspace.workflowbasic
Methods in org.dspace.workflowbasic that return WorkspaceItem Modifier and Type Method Description WorkspaceItemBasicWorkflowServiceImpl. abort(Context context, BasicWorkflowItem workflowItem, EPerson e)protected WorkspaceItemBasicWorkflowServiceImpl. returnToWorkspace(Context c, BasicWorkflowItem wfi)Return the workflow item to the workspace of the submitter.WorkspaceItemBasicWorkflowServiceImpl. sendWorkflowItemBackSubmission(Context context, BasicWorkflowItem workflowItem, EPerson ePerson, String provenancePrefix, String rejection_message)Methods in org.dspace.workflowbasic with parameters of type WorkspaceItem Modifier and Type Method Description BasicWorkflowItemBasicWorkflowServiceImpl. start(Context context, WorkspaceItem wsi)BasicWorkflowItemBasicWorkflowServiceImpl. startWithoutNotify(Context c, WorkspaceItem wsi) -
Uses of WorkspaceItem in org.dspace.xmlworkflow
Methods in org.dspace.xmlworkflow that return WorkspaceItem Modifier and Type Method Description WorkspaceItemXmlWorkflowServiceImpl. abort(Context c, XmlWorkflowItem wi, EPerson e)protected WorkspaceItemXmlWorkflowServiceImpl. returnToWorkspace(Context c, XmlWorkflowItem wfi)Return the workflow item to the workspace of the submitter.WorkspaceItemXmlWorkflowServiceImpl. sendWorkflowItemBackSubmission(Context context, XmlWorkflowItem wi, EPerson e, String provenance, String rejection_message)Methods in org.dspace.xmlworkflow with parameters of type WorkspaceItem Modifier and Type Method Description XmlWorkflowItemXmlWorkflowServiceImpl. start(Context context, WorkspaceItem wsi)XmlWorkflowItemXmlWorkflowServiceImpl. startWithoutNotify(Context context, WorkspaceItem wsi)startWithoutNotify() starts the workflow normally, but disables notifications (useful for large imports,) for the first workflow step - subsequent notifications happen normally
-