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 RightOwner
GrantRevoke. grantee
-
Uses of RightOwner in org.h2.engine
Subclasses of RightOwner in org.h2.engine Modifier and Type Class Description class
Role
Represents a role.class
User
Represents a user object.Fields in org.h2.engine declared as RightOwner Modifier and Type Field Description private RightOwner
Right. grantee
To 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. usersAndRoles
Methods in org.h2.engine that return RightOwner Modifier and Type Method Description RightOwner
Database. findUserOrRole(java.lang.String name)
Get the user or role if it exists, ornull
if 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 RightOwner
Schema. owner
Methods in org.h2.schema that return RightOwner Modifier and Type Method Description RightOwner
Schema. 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.
-