* load a Sete User
* @see org.sete.service.admin.SeteUserProfileService#loadSeteUser(java.lang.String)
*/
public SeteUserVo loadSeteUser(String creator) throws NullPointerException {
SeteUser su = userDao.findById(Integer.valueOf(creator));
SeteUserVo vo = new SeteUserVo();
vo.setFirstName(su.getFirstName());
vo.setMiddleName(su.getMiddleName());
vo.setLastName(su.getLastName());
vo.setLoginName(su.getLoginName());
if(su.getContactInformation() == null)
su.setContactInformation(new ContactInformation());
vo.setAddress(su.getContactInformation().getAddress());
vo.setEmailAddress(su.getContactInformation().getEmailAddress());
vo.setPhoneNumber(su.getContactInformation().getPhoneNumber());
return vo;
}