-
Notifications
You must be signed in to change notification settings - Fork 931
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
for bonus task, with new branch #1104
base: master
Are you sure you want to change the base?
Conversation
@@ -11,6 +13,13 @@ public class AuthenticationService { | |||
* Return false in any other cases. | |||
*/ | |||
public boolean login(String email, String password) { | |||
UserService userService = new UserService(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't create UserService userService each time when method login is called
make it class-level variable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How I can call method from UserService, when i don`t have member of this class?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can I make this method static?
for (User user:users | ||
) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for (User user:users | |
) { | |
for (User user : users) { |
I tried fix mistakes |
@@ -15,6 +15,11 @@ public class UserService { | |||
* Return <code>null</code> if there is no suitable user | |||
*/ | |||
public User findByEmail(String email) { | |||
for (User user:users) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for (User user:users) { | |
for (User user : users) { |
User user = userService.findByEmail(email); | ||
if (user != null) { | ||
if (user.getPassword().equals(password)) { | ||
return true; | ||
} | ||
} | ||
return false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let`s simplify using one return in one line
public boolean login(String email, String password) { | ||
return false; | ||
boolean userExist = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
boolean userExist = false; |
if (user != null) { | ||
if (user.getPassword().equals(password)) { | ||
userExist = true; | ||
} | ||
} | ||
return userExist; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (user != null) { | |
if (user.getPassword().equals(password)) { | |
userExist = true; | |
} | |
} | |
return userExist; | |
} | |
return user != null and user.password equals(password); | |
} |
No description provided.