/**
* Lee un rol desde una consulta (ResultSet) que contenga todos los campos de ROLES.
*/
private Role readRole(ResultSet rs) throws Exception
{
Role role = new Role();
try
{
role.setId(rs.getString("roleid"));
role.setDescription(rs.getString("roledescription"));
role.setApplicationId(rs.getString("roleappid"));
role.setSuperUser(rs.getBoolean("rolesu"));
}
catch (Exception ex)
{
throw ex;
}