All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dspace.xmlworkflow.storedcomponents.ClaimedTask Maven / Gradle / Ivy

There is a newer version: 8.0
Show newest version
/**
 * 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.SequenceGenerator;
import javax.persistence.Table;

import org.dspace.core.Context;
import org.dspace.core.ReloadableEntity;
import org.dspace.eperson.EPerson;

/**
 * Claimed task representing the database representation of an action claimed by 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_claimtask")
public class ClaimedTask implements ReloadableEntity {

    @Id
    @Column(name = "claimtask_id")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "cwf_claimtask_seq")
    @SequenceGenerator(name = "cwf_claimtask_seq", sequenceName = "cwf_claimtask_seq", allocationSize = 1)
    private Integer id;

    @ManyToOne(fetch = FetchType.LAZY)
    @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 = "owner_id")
    private EPerson owner;

    /**
     * Protected constructor, create object using:
     * {@link org.dspace.xmlworkflow.storedcomponents.service.ClaimedTaskService#create(Context)}
     */
    protected ClaimedTask() {

    }

    @Override
    public Integer getID() {
        return id;
    }

    public void setOwner(EPerson owner) {
        this.owner = owner;
    }

    public EPerson getOwner() {
        return owner;
    }

    public void setWorkflowItem(XmlWorkflowItem workflowItem) {
        this.workflowItem = workflowItem;
    }

    public XmlWorkflowItem getWorkflowItem() {
        return workflowItem;
    }

    public void setActionID(String actionId) {
        this.actionId = actionId;
    }

    public String getActionID() {
        return actionId;
    }

    public void setStepID(String stepId) {
        this.stepId = stepId;
    }

    public String getStepID() {
        return stepId;
    }

    public void setWorkflowID(String workflowId) {
        this.workflowId = workflowId;
    }

    public String getWorkflowID() {
        return workflowId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy