Uses of Class
org.pentaho.platform.engine.security.userroledao.UncategorizedUserRoleDaoException

Packages that use UncategorizedUserRoleDaoException
org.pentaho.platform.engine.security.userroledao Defines a data access object (DAO) for create, retrieve, update, and delete (CRUD) operations on users and roles. 
org.pentaho.platform.engine.security.userroledao.hibernate   
 

Uses of UncategorizedUserRoleDaoException in org.pentaho.platform.engine.security.userroledao
 

Methods in org.pentaho.platform.engine.security.userroledao that throw UncategorizedUserRoleDaoException
 void IUserRoleDao.createRole(IPentahoRole newRole)
           
 void IUserRoleDao.createUser(IPentahoUser newUser)
           
 void IUserRoleDao.deleteRole(IPentahoRole role)
           
 void IUserRoleDao.deleteUser(IPentahoUser user)
           
 IPentahoRole IUserRoleDao.getRole(String name)
           
 List<IPentahoRole> IUserRoleDao.getRoles()
           
 IPentahoUser IUserRoleDao.getUser(String name)
           
 List<IPentahoUser> IUserRoleDao.getUsers()
           
 void IUserRoleDao.updateRole(IPentahoRole role)
           
 void IUserRoleDao.updateUser(IPentahoUser user)
           
 

Uses of UncategorizedUserRoleDaoException in org.pentaho.platform.engine.security.userroledao.hibernate
 

Methods in org.pentaho.platform.engine.security.userroledao.hibernate that throw UncategorizedUserRoleDaoException
 void HibernateUserRoleDao.createRole(IPentahoRole roleToCreate)
          This method is more complex because this is the inverse end of a bidirectional many-to-many relationship.
 void UserRoleDaoTransactionDecorator.createRole(IPentahoRole roleToCreate)
           
 void HibernateUserRoleDao.createUser(IPentahoUser userToCreate)
           
 void UserRoleDaoTransactionDecorator.createUser(IPentahoUser userToCreate)
           
 void HibernateUserRoleDao.deleteRole(IPentahoRole roleToDelete)
          This method is more complex because this is the inverse end of a bidirectional many-to-many relationship.
 void UserRoleDaoTransactionDecorator.deleteRole(IPentahoRole roleToDelete)
           
 void HibernateUserRoleDao.deleteUser(IPentahoUser userToDelete)
           
 void UserRoleDaoTransactionDecorator.deleteUser(IPentahoUser userToDelete)
           
 IPentahoRole HibernateUserRoleDao.getRole(String name)
           
 IPentahoRole UserRoleDaoTransactionDecorator.getRole(String name)
           
 List<IPentahoRole> HibernateUserRoleDao.getRoles()
           
 List<IPentahoRole> UserRoleDaoTransactionDecorator.getRoles()
           
 IPentahoUser HibernateUserRoleDao.getUser(String username)
           
 IPentahoUser UserRoleDaoTransactionDecorator.getUser(String username)
           
 List<IPentahoUser> HibernateUserRoleDao.getUsers()
           
 List<IPentahoUser> UserRoleDaoTransactionDecorator.getUsers()
           
 void HibernateUserRoleDao.updateRole(IPentahoRole roleToUpdate)
          This method is more complex because this is the inverse end of a bidirectional many-to-many relationship.
 void UserRoleDaoTransactionDecorator.updateRole(IPentahoRole roleToUpdate)
           
 void HibernateUserRoleDao.updateUser(IPentahoUser userToUpdate)
           
 void UserRoleDaoTransactionDecorator.updateUser(IPentahoUser userToUpdate)