Uses of Class
org.h2.engine.Role

Packages that use Role
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
 

Uses of Role in org.h2.engine
 

Methods in org.h2.engine that return Role
 Role Database.findRole(java.lang.String roleName)
          Get the role if it exists, or null if not.
 Role Right.getGrantedRole()
           
 Role Database.getPublicRole()
           
 

Methods in org.h2.engine that return types with arguments of type Role
 java.util.ArrayList<Role> Database.getAllRoles()
           
 

Methods in org.h2.engine with parameters of type Role
 Right RightOwner.getRightForRole(Role role)
          Get the 'grant role' right of this object.
 void RightOwner.grantRole(Role role, Right right)
          Grant a role to this object.
 boolean RightOwner.isRoleGranted(Role grantedRole)
          Check if a role has been granted for this right owner.
 void RightOwner.revokeRole(Role role)
          Remove the right for the given role.
 

Constructors in org.h2.engine with parameters of type Role
Right(Database db, int id, RightOwner grantee, Role grantedRole)