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. grantedRightsThe map of granted rights.private java.util.HashMap<Role,Right>RightOwner. grantedRolesThe map of granted roles.private java.util.concurrent.ConcurrentHashMap<java.lang.String,Right>Database. rightsMethods in org.h2.engine that return Right Modifier and Type Method Description RightRightOwner. getRightForObject(DbObject object)Get the 'grant schema' right of this object.RightRightOwner. 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 voidRightOwner. grantRight(DbObject object, Right right)Grant a right for the given table.voidRightOwner. grantRole(Role role, Right right)Grant a role to this object.
-