private void validateUser(CreateSeteUserVo vo) throws BusinessRuleException {
/* Verify Non violation of Business Rules */
if(StringUtils.isEmpty(vo.getPassword()) || StringUtils.isEmpty(vo.getPassword2())){
BusinessRuleException bre = new BusinessRuleException();
bre.addCodedMessage("seteUser.PasswordEmpty", new String[]{""});
throw bre;
}
else if(userDao.findByLoginName(vo.getLoginName()) != null){
BusinessRuleException bre = new BusinessRuleException();
bre.addCodedMessage("seteUser.LoginAlreadyExists", new String[]{vo.getLoginName()});