FutureAction.java
/*
* @ Copyright 2001 FA Software;
* All right reserved. No part of this program may be reproduced or
* transmitted in any form or by any means, electronic or
* mechanical, including photocopying, recording, or by any
* information storage or retrieval system without written
* permission from FA Software, except for inclusion of brief
* quotations in a review.
*/
package com.mycim.valueobject.wip;
import com.mycim.valueobject.bas.NamedObject;
public class FutureAction extends NamedObject {
// --------------------------------------------------------- Instance Variables
public static final String ActionType_FUTUREMERGE = "FUTUREMERGE";
public static final String ActionType_FUTURESPLIT = "FUTURESPLIT";
public static final String ActionType_FUTUREHOLD = "FUTUREHOLD";
public static final String ActionType_EEN = "EEN";
private Long futureActionRrn;
private Long sequenceNumber;
private String combinationType;
private Long productFamilyRrn;
private Long productRrn;
private Long lotRrn;
private String parentOrChild;
private String transId;
private String beforeFlag;
private String processStepVersion;
private String processStepIdVersion;
private Long processRrn;
private Integer processVersion;
private Long routeRrn;
private Integer routeVersion;
private Long operationRrn;
private Integer operationVersion;
private Long eqptRrn;
private String actionType;
private Long wflRrn;
private String enableFlag;
// --------------------------------------------------------- Properties
public Long getFutureActionRrn() {
return this.futureActionRrn;
}
public void setFutureActionRrn(Long futureActionRrn) {
this.futureActionRrn = futureActionRrn;
}
public Long getSequenceNumber() {
return this.sequenceNumber;
}
public void setSequenceNumber(Long sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
public String getCombinationType() {
return this.combinationType;
}
public void setCombinationType(String combinationType) {
this.combinationType = combinationType;
}
public Long getProductFamilyRrn() {
return this.productFamilyRrn;
}
public void setProductFamilyRrn(Long productFamilyRrn) {
this.productFamilyRrn = productFamilyRrn;
}
public Long getProductRrn() {
return this.productRrn;
}
public void setProductRrn(Long productRrn) {
this.productRrn = productRrn;
}
public Long getLotRrn() {
return this.lotRrn;
}
public void setLotRrn(Long lotRrn) {
this.lotRrn = lotRrn;
}
public String getParentOrChild() {
return this.parentOrChild;
}
public void setParentOrChild(String parentOrChild) {
this.parentOrChild = parentOrChild;
}
public String getTransId() {
return this.transId;
}
public void setTransId(String transId) {
this.transId = transId;
}
public String getBeforeFlag() {
return this.beforeFlag;
}
public void setBeforeFlag(String beforeFlag) {
this.beforeFlag = beforeFlag;
}
public String getProcessStepVersion() {
return this.processStepVersion;
}
public void setProcessStepVersion(String processStepVersion) {
this.processStepVersion = processStepVersion;
}
public String getProcessStepIdVersion() {
return this.processStepIdVersion;
}
public void setProcessStepIdVersion(String processStepIdVersion) {
this.processStepIdVersion = processStepIdVersion;
}
public Long getProcessRrn() {
return this.processRrn;
}
public void setProcessRrn(Long processRrn) {
this.processRrn = processRrn;
}
public Integer getProcessVersion() {
return this.processVersion;
}
public void setProcessVersion(Integer processVersion) {
this.processVersion = processVersion;
}
public Long getRouteRrn() {
return this.routeRrn;
}
public void setRouteRrn(Long routeRrn) {
this.routeRrn = routeRrn;
}
public Integer getRouteVersion() {
return this.routeVersion;
}
public void setRouteVersion(Integer routeVersion) {
this.routeVersion = routeVersion;
}
public Long getOperationRrn() {
return this.operationRrn;
}
public void setOperationRrn(Long operationRrn) {
this.operationRrn = operationRrn;
}
public Integer getOperationVersion() {
return this.operationVersion;
}
public void setOperationVersion(Integer operationVersion) {
this.operationVersion = operationVersion;
}
public Long getEqptRrn() {
return this.eqptRrn;
}
public void setEqptRrn(Long eqptRrn) {
this.eqptRrn = eqptRrn;
}
public String getActionType() {
return this.actionType;
}
public void setActionType(String actionType) {
this.actionType = actionType;
}
public Long getWflRrn() {
return this.wflRrn;
}
public void setWflRrn(Long wflRrn) {
this.wflRrn = wflRrn;
}
public String getEnableFlag() {
return this.enableFlag;
}
public void setEnableFlag(String enableFlag) {
this.enableFlag = enableFlag;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/