Skip to content

Commit

Permalink
task completed
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaHMK committed Dec 20, 2024
1 parent 223a4a7 commit 489ddc2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
package core.basesyntax;

//write your code here
class PasswordValidationException extends Exception {
public PasswordValidationException(String message) {
super(message);
}
}
9 changes: 7 additions & 2 deletions src/main/java/core/basesyntax/PasswordValidator.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
package core.basesyntax;

public class PasswordValidator {
public void validate(String password, String repeatPassword) {
//write your code here
public void validate(String password, String repeatPassword)
throws PasswordValidationException {
if (password == null || repeatPassword == null
|| password.length() < 10 || repeatPassword.length() < 10
|| !repeatPassword.equals(password)) {
throw new PasswordValidationException("Wrong passwords");
}
}
}
9 changes: 8 additions & 1 deletion src/main/java/core/basesyntax/UserService.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
package core.basesyntax;

public class UserService {
private PasswordValidator validator = new PasswordValidator();

public void registerUser(User user) {
//write your code here
try {
validator.validate(user.getPassword(), user.getRepeatPassword());
saveUser(user);
} catch (PasswordValidationException e) {
System.out.println("Your passwords are incorrect. Try again.");
}
}

public void saveUser(User user) {
Expand Down

0 comments on commit 489ddc2

Please sign in to comment.