Package project.entities.authorization

Examples of project.entities.authorization.DictRoles


public class DictRolesDAOImpl extends HibernateDaoSupport implements
    DictRolesDAO {

  @Override
  public DictRoles createDictRoles(String name, String type) {
    DictRoles newRoles = new DictRoles(name, type);
    return (DictRoles) getHibernateTemplate().save(newRoles);
  }
View Full Code Here

TOP

Related Classes of project.entities.authorization.DictRoles

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.