/* * OpenClinica is distributed under the GNU Lesser General Public License (GNU * LGPL). * * For details see: http://www.openclinica.org/license copyright 2003-2010 Akaza * Research * */ package org.akaza.openclinica.bean.odmbeans; import java.util.Date; /** * * @author ywang (March, 2010) * */ public class MetaDataVersionRefBean extends ElementRefBean { private String studyOID; private Date effectiveDate; public String getStudyOID() { return studyOID; } public void setStudyOID(String studyOID) { this.studyOID = studyOID; } public Date getEffectiveDate() { return effectiveDate; } public void setEffectiveDate(Date effectiveDate) { this.effectiveDate = effectiveDate; } }