Ecn.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.prp;
import com.mycim.valueobject.bas.NamedObject;
import java.util.ArrayList;
import java.util.Collection;
public class Ecn extends NamedObject {
// --------------------------------------------------------- Instance Variables
private Long requestBy;
private String requestById;
private Long approvedBy;
private String approvedById;
private Long approvedWorkflowRrn;
private String approvedWorkflowId;
private String comments;
private String ecnStatus;
private String effectiveDateFromS;
private String effectiveDateToS;
private Collection objects = new ArrayList();
private Long facility;
// --------------------------------------------------------- Constructors
public Ecn() {
}
public Ecn(String instanceId, String namedSpace, String object) {
super(instanceId, namedSpace, object);
}
// --------------------------------------------------------- Properties
public Long getFacility() {
return this.facility;
}
public void setFacility(Long facility) {
this.facility = facility;
}
public Long getRequestBy() {
return this.requestBy;
}
public void setRequestBy(Long requestBy) {
this.requestBy = requestBy;
}
public String getRequestById() {
return this.requestById;
}
public void setRequestById(String requestById) {
this.requestById = requestById;
}
public Long getApprovedBy() {
return this.approvedBy;
}
public void setApprovedBy(Long approvedBy) {
this.approvedBy = approvedBy;
}
public String getApprovedById() {
return this.approvedById;
}
public void setApprovedById(String approvedById) {
this.approvedById = approvedById;
}
public Long getApprovedWorkflowRrn() {
return this.approvedWorkflowRrn;
}
public void setApprovedWorkflowRrn(Long approvedWorkflowRrn) {
this.approvedWorkflowRrn = approvedWorkflowRrn;
}
public String getApprovedWorkflowId() {
return this.approvedWorkflowId;
}
public void setApprovedWorkflowId(String approvedWorkflowId) {
this.approvedWorkflowId = approvedWorkflowId;
}
public String getComments() {
return this.comments;
}
public void setComments(String comments) {
this.comments = comments;
}
public String getEcnStatus() {
return this.ecnStatus;
}
public void setEcnStatus(String ecnStatus) {
this.ecnStatus = ecnStatus;
}
public String getEffectiveDateFrom() {
return this.effectiveDateFromS;
}
public void setEffectiveDateFrom(String effectiveDateFromS) {
this.effectiveDateFromS = effectiveDateFromS;
}
public String getEffectiveDateTo() {
return this.effectiveDateToS;
}
public void setEffectiveDateTo(String effectiveDateToS) {
this.effectiveDateToS = effectiveDateToS;
}
public Collection getObjects() {
return this.objects;
}
public void setObjects(Collection objects) {
this.objects = objects;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/