package de.websector.blog.openamf.mapping.vo;

import java.util.Date;

public class UserVO 
{
	private String userName;
	private Date registerDate;
	
	public UserVO() {}

	public String getUserName() 
	{
		return this.userName;
	}

	public void setUserName(String value) 
	{
		this.userName = value;
	}
	
	public Date getRegisterDate() 
	{
		return this.registerDate;
	}

	public void setRegisterDate(Date value) 
	{
		this.registerDate = value;
	}

}

