Package com.liusoft.dlog4j.beans

Examples of com.liusoft.dlog4j.beans.CatalogUserKey


   * @throws SQLException
   */
  public static void createPermission(int catalog_id, int user_id, int role){
    CatalogPermBean cpb = new CatalogPermBean();
    cpb.setRole(role);
    cpb.setKey(new CatalogUserKey(catalog_id, user_id));
    saveOrUpdate(cpb);
  }
View Full Code Here

TOP

Related Classes of com.liusoft.dlog4j.beans.CatalogUserKey

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.