Package co.cubicode.rbacframework.biz

Source Code of co.cubicode.rbacframework.biz.RoleBiz

package co.cubicode.rbacframework.biz;

import co.cubicode.jdbcframework.DatabaseFactory;
import co.cubicode.jdbcframework.SQL;
import co.cubicode.jdbcframework.SQLQuery;
import co.cubicode.jdbcframework.exceptions.ObjectNotFoundException;
import co.cubicode.rbacframework.models.Role;

public class RoleBiz {

  public static Role findByPrimaryKey(Integer id) throws ObjectNotFoundException {
    DatabaseFactory instance = DatabaseFactory.getInstance("rbac");
    SQLQuery sql = SQL.getSQL(Role.class, "findByPrimaryKey");
    sql.setParameter("id", id);
    return instance.query(Role.class, sql);
  }

}
TOP

Related Classes of co.cubicode.rbacframework.biz.RoleBiz

TOP
Copyright © 2018 www.massapi.com. 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.