Skip to content

Commit

Permalink
hw
Browse files Browse the repository at this point in the history
  • Loading branch information
OleksandrDarchyk committed Nov 15, 2024
1 parent 223a4a7 commit 86fc2f5
Show file tree
Hide file tree
Showing 3 changed files with 24 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
public class PasswordValidationException extends Exception {
public PasswordValidationException(String message) {
super(message);
}
}
13 changes: 11 additions & 2 deletions src/main/java/core/basesyntax/PasswordValidator.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
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) {
throw new PasswordValidationException("Wrong passwords");
}
if (!password.equals(repeatPassword)) {
throw new PasswordValidationException("Wrong passwords");
}
if (password.length() < 10) {
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 final PasswordValidator passwordValidator = new PasswordValidator();

public void registerUser(User user) {
//write your code here
try {
passwordValidator.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 86fc2f5

Please sign in to comment.