Uses of Class
org.h2.engine.Role
-
Packages that use Role Package Description org.h2.command.ddl Contains DDL (data definition language) and related SQL statements.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.command.ddl
Methods in org.h2.command.ddl with parameters of type Role Modifier and Type Method Description private voidGrantRevoke. grantRole(Role grantedRole)private voidGrantRevoke. revokeRole(Role grantedRole) -
Uses of Role in org.h2.engine
Fields in org.h2.engine declared as Role Modifier and Type Field Description private RoleRight. grantedRoleThe granted role, or null if a right was granted.private RoleDatabase. publicRoleFields in org.h2.engine with type parameters of type Role Modifier and Type Field Description private java.util.HashMap<Role,Right>RightOwner. grantedRolesThe map of granted roles.Methods in org.h2.engine that return Role Modifier and Type Method Description RoleDatabase. findRole(java.lang.String roleName)Get the role if it exists, or null if not.RoleRight. getGrantedRole()RoleDatabase. getPublicRole()Methods in org.h2.engine with parameters of type Role Modifier and Type Method Description RightRightOwner. getRightForRole(Role role)Get the 'grant role' right of this object.voidRightOwner. grantRole(Role role, Right right)Grant a role to this object.booleanRightOwner. isRoleGranted(Role grantedRole)Check if a role has been granted for this right owner.(package private) voidRightOwner. revokeRole(Role role)Remove the right for the given role.Constructors in org.h2.engine with parameters of type Role Constructor Description Right(Database db, int id, RightOwner grantee, Role grantedRole)
-