Commit 13e294d3 by Juho Juopperi

changes

1 parent dc2b68f8
......@@ -35,9 +35,9 @@ public class UserBean implements UserBeanLocal {
}
@Override
public User createNewUser(String nick, String password) {
public User createNewUser(String login, String password) {
User returnUser = new User();
returnUser.setNick(nick);
returnUser.setLogin(login);
// TODO: Hash function....
returnUser.setPassword(password);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!