/** * Copyright © 2013 enioka. All rights reserved * Authors: Marc-Antoine GOUILLART (marc-antoine.gouillart@enioka.com) * Pierre COPPEE (pierre.coppee@enioka.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.enioka.jqm.model; import java.io.Serializable; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import com.enioka.jqm.jdbc.DatabaseException; import com.enioka.jqm.jdbc.DbConn; public class RPermission implements Serializable { private static final long serialVersionUID = 1234354709423603792L; private Integer id; private String name; private int role; public Integer getId() { return id; } void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getRole() { return role; } public void setRole(int role) { this.role = role; } public static List<RPermission> select(DbConn cnx, String query_key, Object... args) { List<RPermission> res = new ArrayList<RPermission>(); try { ResultSet rs = cnx.runSelect(query_key, args); while (rs.next()) { RPermission tmp = new RPermission(); tmp.id = rs.getInt(1); tmp.name = rs.getString(2); tmp.role = rs.getInt(3); res.add(tmp); } } catch (SQLException e) { throw new DatabaseException(e); } return res; } }