Package project.entities.authorization

Examples of project.entities.authorization.Properties


public class PropertiesDAOImpl extends HibernateDaoSupport implements
    PropertiesDAO {

  @Override
  public Properties createProperties(int role, int user, boolean value) {
    Properties properties = new Properties(role, user, value);
    return (Properties) getHibernateTemplate().save(properties);
  }
View Full Code Here

TOP

Related Classes of project.entities.authorization.Properties

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.