Uses of Class
org.h2.engine.RightOwner
-
Packages that use RightOwner 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.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants). -
-
Uses of RightOwner in org.h2.command.ddl
Fields in org.h2.command.ddl declared as RightOwner Modifier and Type Field Description private RightOwnerGrantRevoke. grantee -
Uses of RightOwner in org.h2.engine
Subclasses of RightOwner in org.h2.engine Modifier and Type Class Description classRoleRepresents a role.classUserRepresents a user object.Fields in org.h2.engine declared as RightOwner Modifier and Type Field Description private RightOwnerRight. granteeTo whom the right is granted.Fields in org.h2.engine with type parameters of type RightOwner Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<java.lang.String,RightOwner>Database. usersAndRolesMethods in org.h2.engine that return RightOwner Modifier and Type Method Description RightOwnerDatabase. findUserOrRole(java.lang.String name)Get the user or role if it exists, ornullif not.Methods in org.h2.engine that return types with arguments of type RightOwner Modifier and Type Method Description java.util.Collection<RightOwner>Database. getAllUsersAndRoles()Constructors in org.h2.engine with parameters of type RightOwner Constructor Description Right(Database db, int id, RightOwner grantee, int grantedRight, DbObject grantedObject)Right(Database db, int id, RightOwner grantee, Role grantedRole) -
Uses of RightOwner in org.h2.schema
Fields in org.h2.schema declared as RightOwner Modifier and Type Field Description private RightOwnerSchema. ownerMethods in org.h2.schema that return RightOwner Modifier and Type Method Description RightOwnerSchema. getOwner()Get the owner of this schema.Constructors in org.h2.schema with parameters of type RightOwner Constructor Description Schema(Database database, int id, java.lang.String schemaName, RightOwner owner, boolean system)Create a new schema object.
-