*
*/
public final void validarDadosIsNull() throws ValidationException {
if (StringUtils.isBlank(this.userName)) {
throw new ValidationException("� necess�rio preencher o campo Nome de usu�rio");
} else if (StringUtils.isBlank(this.userPassword)) {
throw new ValidationException("� necess�rio preencher o campo senha.");
} else if (StringUtils.isBlank(this.confirmUserPassword)) {
throw new ValidationException("� necess�rio preencher o campo Confirme sua senha.");
} else if (StringUtils.isBlank(email)) {
throw new ValidationException("� necess�rio preencher o campo E-mail.");
} else if (StringUtils.isBlank(this.lastUserName)) {
throw new ValidationException("� necess�rio preencher o campo Sobrenome.");
}
}