EmployeeCertification.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.ems;
import java.io.Serializable;
public class EmployeeCertification implements Serializable {
// --------------------------------------------------------- Instance Variables
private String certificationLevel;
private Long entityRrn;
private long certificationRrn;
private Long userRrn;
private java.util.Collection employeeCertificationItems;
private String userId;
private String entityId;
private String expiryDate;
private String engineerGroup;
private String entityGroupIds;
private String effectiveDate;
public EmployeeCertification() {
}
public EmployeeCertification(Long entityRrn, Long userRrn) {
super();
this.entityRrn = entityRrn;
this.userRrn = userRrn;
}
// --------------------------------------------------------- Properties
public long getCertificationRrn() {
return certificationRrn;
}
public void setCertificationRrn(long certificationRrn) {
this.certificationRrn = certificationRrn;
}
public Long getUserRrn() {
return userRrn;
}
public void setUserRrn(Long userRrn) {
this.userRrn = userRrn;
}
public String getCertificationLevel() {
return certificationLevel;
}
public void setCertificationLevel(String certificationLevel) {
this.certificationLevel = certificationLevel;
}
public String getExpiryDate() {
return expiryDate;
}
public void setExpiryDate(String expiryDate) {
this.expiryDate = expiryDate;
}
public Long getEntityRrn() {
return entityRrn;
}
public void setEntityRrn(Long entityRrn) {
this.entityRrn = entityRrn;
}
public java.util.Collection getEmployeeCertificationItems() {
return employeeCertificationItems;
}
public void setEmployeeCertificationItems(java.util.Collection employeeCertificationItems) {
this.employeeCertificationItems = employeeCertificationItems;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getEntityId() {
return entityId;
}
public void setEntityId(String entityId) {
this.entityId = entityId;
}
public String getEngineerGroup() {
return engineerGroup;
}
public void setEngineerGroup(String engineerGroup) {
this.engineerGroup = engineerGroup;
}
public String getEntityGroupIds() {
return entityGroupIds;
}
public void setEntityGroupIds(String entityGroupIds) {
this.entityGroupIds = entityGroupIds;
}
public String getEffectiveDate() {
return effectiveDate;
}
public void setEffectiveDate(String effectiveDate) {
this.effectiveDate = effectiveDate;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/