Package org.pentaho.platform.api.engine.security.userroledao

Examples of org.pentaho.platform.api.engine.security.userroledao.UncategorizedUserRoleDaoException


        public Object doInJcr( Session session ) throws IOException, RepositoryException {
          return getUsers( session, tenant, includeSubtenants );
        }
      } );
    } catch ( DataAccessException e ) {
      throw new UncategorizedUserRoleDaoException( Messages.getInstance().getString(
          "JcrUserRoleDao.ERROR_0009_LISTING_USERS", e.getLocalizedMessage() ), e );
    }
  }
View Full Code Here


        public Object doInJcr( Session session ) throws IOException, RepositoryException {
          return getRole( session, tenant, name );
        }
      } );
    } catch ( DataAccessException e ) {
      throw new UncategorizedUserRoleDaoException( Messages.getInstance().getString(
          "JcrUserRoleDao.ERROR_0010_GETTING_ROLE", e.getLocalizedMessage() ), e );
    }
  }
View Full Code Here

        public Object doInJcr( Session session ) throws IOException, RepositoryException {
          return getUser( session, tenant, name );
        }
      } );
    } catch ( DataAccessException e ) {
      throw new UncategorizedUserRoleDaoException( Messages.getInstance().getString(
          "JcrUserRoleDao.ERROR_0010_GETTING_ROLE", e.getLocalizedMessage() ), e );
    }
  }
View Full Code Here

        public Object doInJcr( Session session ) throws IOException, RepositoryException {
          return getRoleMembers( session, tenant, roleName );
        }
      } );
    } catch ( DataAccessException e ) {
      throw new UncategorizedUserRoleDaoException( Messages.getInstance().getString(
          "JcrUserRoleDao.ERROR_0011_LISTING_ROLE_MEMBERS", e.getLocalizedMessage() ), e );
    }
  }
View Full Code Here

        public Object doInJcr( Session session ) throws IOException, RepositoryException {
          return getUserRoles( session, tenant, userName );
        }
      } );
    } catch ( DataAccessException e ) {
      throw new UncategorizedUserRoleDaoException( Messages.getInstance().getString(
          "JcrUserRoleDao.ERROR_0011_LISTING_ROLE_MEMBERS", e.getLocalizedMessage() ), e );
    }
  }
View Full Code Here

TOP

Related Classes of org.pentaho.platform.api.engine.security.userroledao.UncategorizedUserRoleDaoException

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.