package com.nyl.rnv.rwb.wfc;

import com.nyl.rnv.rwb.admin.Users;

/**
 * @author t19bgtx
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */
public class CollectionEntryVO {
	private Object element;
	/**
	 * Constructor for CollectionEntryVO.
	 */
	public CollectionEntryVO() { }

     public CollectionEntryVO(Users value) {
       this.element = value;
     }

	/**
	 * Returns the element.
	 * @return Object
	 */
	public Object getElement() {
		return element;
	}

	/**
	 * Sets the element.
	 * @param element The element to set
	 */
	public void setElement(Users element) {
		this.element = element;
	}

}
