Uses of Interface
org.pentaho.platform.engine.security.userroledao.IPentahoRole

Packages that use IPentahoRole
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 IPentahoRole in org.pentaho.platform.engine.security.userroledao
 

Classes in org.pentaho.platform.engine.security.userroledao that implement IPentahoRole
 class PentahoRole
          A role in the Pentaho platform.
 

Methods in org.pentaho.platform.engine.security.userroledao that return IPentahoRole
 IPentahoRole IUserRoleDao.getRole(String name)
           
 

Methods in org.pentaho.platform.engine.security.userroledao that return types with arguments of type IPentahoRole
 Set<IPentahoRole> IPentahoUser.getRoles()
           
 List<IPentahoRole> IUserRoleDao.getRoles()
           
 Set<IPentahoRole> PentahoUser.getRoles()
           
 

Methods in org.pentaho.platform.engine.security.userroledao with parameters of type IPentahoRole
 boolean IPentahoUser.addRole(IPentahoRole role)
           
 boolean PentahoUser.addRole(IPentahoRole role)
           
 void IUserRoleDao.createRole(IPentahoRole newRole)
           
 void IUserRoleDao.deleteRole(IPentahoRole role)
           
 boolean IPentahoUser.removeRole(IPentahoRole role)
           
 boolean PentahoUser.removeRole(IPentahoRole role)
           
 void IUserRoleDao.updateRole(IPentahoRole role)
           
 

Method parameters in org.pentaho.platform.engine.security.userroledao with type arguments of type IPentahoRole
 void IPentahoUser.setRoles(Set<IPentahoRole> roles)
           
 void PentahoUser.setRoles(Set<IPentahoRole> roles)
           
 

Constructors in org.pentaho.platform.engine.security.userroledao with parameters of type IPentahoRole
PentahoRole(IPentahoRole roleToCopy)
          Copy constructor
 

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

Methods in org.pentaho.platform.engine.security.userroledao.hibernate that return IPentahoRole
 IPentahoRole HibernateUserRoleDao.getRole(String name)
           
 IPentahoRole UserRoleDaoTransactionDecorator.getRole(String name)
           
 

Methods in org.pentaho.platform.engine.security.userroledao.hibernate that return types with arguments of type IPentahoRole
 List<IPentahoRole> HibernateUserRoleDao.getRoles()
           
 List<IPentahoRole> UserRoleDaoTransactionDecorator.getRoles()
           
 

Methods in org.pentaho.platform.engine.security.userroledao.hibernate with parameters of type IPentahoRole
 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.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.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)