Class InProgressUser
- java.lang.Object
-
- org.dspace.xmlworkflow.storedcomponents.InProgressUser
-
- All Implemented Interfaces:
ReloadableEntity<Integer>
@Entity public class InProgressUser extends Object implements ReloadableEntity<Integer>
Claimed task representing the database representation of an action claimed by an eperson- Author:
- Bram De Schouwer (bram.deschouwer at dot com), Kevin Van de Velde (kevin at atmire dot com), Ben Bosman (ben at atmire dot com), Mark Diggory (markd at atmire dot com)
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedInProgressUser()Protected constructor, create object using:DSpaceCRUDService.create(Context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetID()The unique identifier of this entity instance.EPersongetUser()XmlWorkflowItemgetWorkflowItem()booleanisFinished()voidsetFinished(boolean finished)voidsetUser(EPerson user)voidsetWorkflowItem(XmlWorkflowItem workflowItem)
-
-
-
Constructor Detail
-
InProgressUser
protected InProgressUser()
Protected constructor, create object using:DSpaceCRUDService.create(Context)
-
-
Method Detail
-
getID
public Integer getID()
Description copied from interface:ReloadableEntityThe unique identifier of this entity instance.- Specified by:
getIDin interfaceReloadableEntity<Integer>- Returns:
- the value of the primary key for this instance.
-
setUser
public void setUser(EPerson user)
-
getUser
public EPerson getUser()
-
setWorkflowItem
public void setWorkflowItem(XmlWorkflowItem workflowItem)
-
getWorkflowItem
public XmlWorkflowItem getWorkflowItem()
-
isFinished
public boolean isFinished()
-
setFinished
public void setFinished(boolean finished)
-
-