Job.java

package com.mycim.valueobject.wip;

public class Job implements java.io.Serializable, Cloneable {

    public static final String CHAMBEREQPTSSEPARATOR = ";";

    // --------------------------------------------------------- Instance Variables
    private long jobRrn;

    private Long eqptRrn;

    private String eqptId;

    private String eqptStatus;

    private Long operationRrn;

    private String operationId;

    private String recipeString;

    private String jobStatus;

    private String processStatus;

    private String beforeStatus;

    private String jobComments;

    private String chamberEqptsId;

    private Long runRrn;

    private String transExecutionId;

    private Long executionRrn;

    private String transPerformedby;

    // added for UOM1,2
    private String UOM1;

    private String UOM2;

    // --------------------------------------------------------- Properties
    public String getEqptStatus() {
        return eqptStatus;
    }

    public void setEqptStatus(String eqptStatus) {
        this.eqptStatus = eqptStatus;
    }

    public long getJobRrn() {
        return this.jobRrn;
    }

    public void setJobRrn(long jobRrn) {
        this.jobRrn = jobRrn;
    }

    public Long getEqptRrn() {
        return this.eqptRrn;
    }

    public void setEqptRrn(Long eqptRrn) {
        this.eqptRrn = eqptRrn;
    }

    public String getChamberEqptsId() {
        return chamberEqptsId;
    }

    public void setChamberEqptsId(String chamberEqptsId) {
        this.chamberEqptsId = chamberEqptsId;
    }

    public String getEqptId() {
        return this.eqptId;
    }

    public void setEqptId(String eqptId) {
        this.eqptId = eqptId;
    }

    public Long getOperationRrn() {
        return this.operationRrn;
    }

    public void setOperationRrn(Long operationRrn) {
        this.operationRrn = operationRrn;
    }

    public String getOperationId() {
        return this.operationId;
    }

    public void setOperationId(String operationId) {
        this.operationId = operationId;
    }

    public String getRecipeString() {
        return this.recipeString;
    }

    public void setRecipeString(String recipeString) {
        this.recipeString = recipeString;
    }

    /*
     * public Long getRecipeRrn(){ return this.recipeRrn; } public void setRecipeRrn(Long recipeRrn){ this
     * .recipeRrn =
     * recipeRrn; } public String getRecipeId(){ return this.recipeId; } public void setRecipeId(String
     * recipeId){
     * this.recipeId = recipeId; } public Integer getRecipeVersion(){ return this.recipeVersion; } public void
     * setRecipeVersion(Integer recipeVersion){ this.recipeVersion = recipeVersion; } public Long
     * getRecipeParameterRrn(){ return this.recipeParameterRrn; } public void setRecipeParameterRrn(Long
     * recipeParameterRrn){ this.recipeParameterRrn = recipeParameterRrn; } public String
     * getRecipeParameterId(){ return
     * this.recipeParameterId; } public void setRecipeParameterId(String recipeParameterId){ this
     * .recipeParameterId =
     * recipeParameterId; }
     */
    public String getJobStatus() {
        return this.jobStatus;
    }

    public void setJobStatus(String jobStatus) {
        this.jobStatus = jobStatus;
    }

    public String getProcessStatus() {
        return this.processStatus;
    }

    public void setProcessStatus(String processStatus) {
        this.processStatus = processStatus;
    }

    public String getBeforeStatus() {
        return this.beforeStatus;
    }

    public void setBeforeStatus(String beforeStatus) {
        this.beforeStatus = beforeStatus;
    }

    public String getJobComments() {
        return this.jobComments;
    }

    public void setJobComments(String jobComments) {
        this.jobComments = jobComments;
    }

    public Long getRunRrn() {
        return this.runRrn;
    }

    public void setRunRrn(Long runRrn) {
        this.runRrn = runRrn;
    }

    public String getTransExecutionId() {
        return this.transExecutionId;
    }

    public void setTransExecutionId(String transExecutionId) {
        this.transExecutionId = transExecutionId;
    }

    public Long getExecutionRrn() {
        return this.executionRrn;
    }

    public void setExecutionRrn(Long executionRrn) {
        this.executionRrn = executionRrn;
    }

    public String getTransPerformedby() {
        return this.transPerformedby;
    }

    public void setTransPerformedby(String transPerformedby) {
        this.transPerformedby = transPerformedby;
    }

    public Object clone() throws CloneNotSupportedException {
        return super.clone();
    }

    public String getUOM1() {
        return this.UOM1;
    }

    public void setUOM1(String UOM1) {
        this.UOM1 = UOM1;
    }

    public String getUOM2() {
        return this.UOM2;
    }

    public void setUOM2(String UOM2) {
        this.UOM2 = UOM2;
    }

}

/*
 * Modification Log Log No : Name : Modified Date: Description :
 */