Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hw3 #1259

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

hw3 #1259

Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md → src/main/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Method `registerUser()` should call the method `validate()` and handle the excep
If everything is okay, save the user to the database (use method `saveUser()`),
if not, print the message "Your passwords are incorrect. Try again.".

#### [Try to avoid these common mistakes while solving task](./checklist.md)
#### [Try to avoid these common mistakes while solving task](../../checklist.md)
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);
}
}
11 changes: 9 additions & 2 deletions src/main/java/core/basesyntax/PasswordValidator.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
package core.basesyntax;

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

public class UserService {
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
Loading