Uses of Class
org.h2.engine.Right
-
Packages that use Right Package Description org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. -
-
Uses of Right in org.h2.engine
Fields in org.h2.engine with type parameters of type Right Modifier and Type Field Description private java.util.HashMap<DbObject,Right>
RightOwner. grantedRights
The map of granted rights.private java.util.HashMap<Role,Right>
RightOwner. grantedRoles
The map of granted roles.private java.util.concurrent.ConcurrentHashMap<java.lang.String,Right>
Database. rights
Methods in org.h2.engine that return Right Modifier and Type Method Description Right
RightOwner. getRightForObject(DbObject object)
Get the 'grant schema' right of this object.Right
RightOwner. getRightForRole(Role role)
Get the 'grant role' right of this object.Methods in org.h2.engine that return types with arguments of type Right Modifier and Type Method Description java.util.ArrayList<Right>
Database. getAllRights()
Methods in org.h2.engine with parameters of type Right Modifier and Type Method Description void
RightOwner. grantRight(DbObject object, Right right)
Grant a right for the given table.void
RightOwner. grantRole(Role role, Right right)
Grant a role to this object.
-