org.dspace.xmlworkflow.storedcomponents.PoolTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dspace-api Show documentation
Show all versions of dspace-api Show documentation
DSpace core data model and service APIs.
/**
* The contents of this file are subject to the license and copyright
* detailed in the LICENSE and NOTICE files at the root of the source
* tree and available online at
*
* http://www.dspace.org/license/
*/
package org.dspace.xmlworkflow.storedcomponents;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToOne;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
import org.dspace.core.Context;
import org.dspace.core.ReloadableEntity;
import org.dspace.eperson.EPerson;
import org.dspace.eperson.Group;
/**
* Pool task representing the database representation of a pool task for a step and an eperson
*
* @author Bram De Schouwer (bram.deschouwer at dot com)
* @author Kevin Van de Velde (kevin at atmire dot com)
* @author Ben Bosman (ben at atmire dot com)
* @author Mark Diggory (markd at atmire dot com)
*/
@Entity
@Table(name = "cwf_pooltask")
public class PoolTask implements ReloadableEntity {
@Id
@Column(name = "pooltask_id")
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "cwf_pooltask_seq")
@SequenceGenerator(name = "cwf_pooltask_seq", sequenceName = "cwf_pooltask_seq", allocationSize = 1)
private Integer id;
@OneToOne
@JoinColumn(name = "workflowitem_id")
private XmlWorkflowItem workflowItem;
// @Column(name = "workflow_id")
// @Lob
@Column(name = "workflow_id", columnDefinition = "text")
private String workflowId;
// @Column(name = "step_id")
// @Lob
@Column(name = "step_id", columnDefinition = "text")
private String stepId;
// @Column(name = "action_id")
// @Lob
@Column(name = "action_id", columnDefinition = "text")
private String actionId;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "eperson_id")
private EPerson ePerson;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "group_id")
private Group group;
/**
* Protected constructor, create object using:
* {@link org.dspace.xmlworkflow.storedcomponents.service.PoolTaskService#create(Context)}
*/
protected PoolTask() {
}
@Override
public Integer getID() {
return id;
}
public void setEperson(EPerson ePerson) {
this.ePerson = ePerson;
}
public EPerson getEperson() {
return ePerson;
}
public void setGroup(Group group) {
this.group = group;
}
public Group getGroup() {
return this.group;
}
public void setWorkflowID(String id) {
this.workflowId = id;
}
public String getWorkflowID() {
return workflowId;
}
public void setWorkflowItem(XmlWorkflowItem xmlWorkflowItem) {
this.workflowItem = xmlWorkflowItem;
}
public XmlWorkflowItem getWorkflowItem() {
return this.workflowItem;
}
public void setStepID(String stepId) {
this.stepId = stepId;
}
public String getStepID() {
return stepId;
}
public void setActionID(String actionId) {
this.actionId = actionId;
}
public String getActionID() {
return this.actionId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy