ProcessVersion.java

package com.mycim.valueobject.prp;

import com.mycim.valueobject.bas.ObjectVersion;

public class ProcessVersion extends ObjectVersion {

    // --------------------------------------------------------- Instance Variables
    private Long routeRrn;

    private String routeId;

    private String unitMapType;

    private String estimatedCycleTime;

    private String estimatedCtFactor;

    private String computedCycleTime;

    private String computedNoOfSteps;

    // --------------------------------------------------------- Properties
    public Long getRouteRrn() {
        return this.routeRrn;
    }

    public void setRouteRrn(Long routeRrn) {
        this.routeRrn = routeRrn;
    }

    public String getRouteId() {
        return this.routeId;
    }

    public void setRouteId(String routeId) {
        this.routeId = routeId;
    }

    public String getUnitMapType() {
        return this.unitMapType;
    }

    public void setUnitMapType(String unitMapType) {
        this.unitMapType = unitMapType;
    }

    public String getEstimatedCycleTime() {
        return this.estimatedCycleTime;
    }

    public void setEstimatedCycleTime(String estimatedCycleTime) {
        this.estimatedCycleTime = estimatedCycleTime;
    }

    public String getEstimatedCtFactor() {
        return this.estimatedCtFactor;
    }

    public void setEstimatedCtFactor(String estimatedCtFactor) {
        this.estimatedCtFactor = estimatedCtFactor;
    }

    public String getComputedCycleTime() {
        return this.computedCycleTime;
    }

    public void setComputedCycleTime(String computedCycleTime) {
        this.computedCycleTime = computedCycleTime;
    }

    public String getComputedNoOfSteps() {
        return this.computedNoOfSteps;
    }

    public void setComputedNoOfSteps(String computedNoOfSteps) {
        this.computedNoOfSteps = computedNoOfSteps;
    }

}

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