Update UserAccountService.java
Moving the call to addUserAccount method out of condition to check if violations exist.
This commit is contained in:
parent
66360a6b31
commit
d5399a7677
|
@ -30,14 +30,9 @@ public class UserAccountService {
|
||||||
for (ConstraintViolation<UserAccount> constraintViolation : violations) {
|
for (ConstraintViolation<UserAccount> constraintViolation : violations) {
|
||||||
sb.append(constraintViolation.getMessage());
|
sb.append(constraintViolation.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
dao.addUserAccount(useraccount);
|
|
||||||
|
|
||||||
throw new ConstraintViolationException("Error occurred: " + sb.toString(), violations);
|
throw new ConstraintViolationException("Error occurred: " + sb.toString(), violations);
|
||||||
}
|
}
|
||||||
|
dao.addUserAccount(useraccount);
|
||||||
|
|
||||||
|
|
||||||
return "Account for " + useraccount.getName() + " Added!";
|
return "Account for " + useraccount.getName() + " Added!";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue