Package project.entities.authorization

Examples of project.entities.authorization.User


import project.entities.authorization.User;

public class UserDAOImpl extends HibernateDaoSupport implements UserDAO {

  public User createUser(String name, String password, int person) {
    User newUser = new User(name, password, person);
    return (User) getHibernateTemplate().save(newUser);
  }
View Full Code Here

TOP

Related Classes of project.entities.authorization.User

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.