Uses of Class
org.h2.engine.User
-
Packages that use User 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.mode Utility classes for compatibility with other database, for example MySQL.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants).org.h2.security.auth Authentication classes.org.h2.table Classes related to a table and table meta data. -
-
Uses of User in org.h2.command.ddl
Fields in org.h2.command.ddl declared as User Modifier and Type Field Description private User
AlterUser. user
Methods in org.h2.command.ddl with parameters of type User Modifier and Type Method Description (package private) static void
CreateUser. setPassword(User user, SessionLocal session, Expression password)
Set the password for the given user.(package private) static void
CreateUser. setSaltAndHash(User user, SessionLocal session, Expression salt, Expression hash)
Set the salt and hash for the given user.void
AlterUser. setUser(User user)
-
Uses of User in org.h2.engine
Fields in org.h2.engine declared as User Modifier and Type Field Description private User
Database. systemUser
private User
SessionLocal. user
Methods in org.h2.engine that return User Modifier and Type Method Description static User
UserBuilder. buildUser(AuthenticationInfo authenticationInfo, Database database, boolean persistent)
Build the database user starting from authentication informations.User
Database. findUser(java.lang.String name)
Get the user if it exists, or null if not.User
Database. getSystemUser()
Returns system user.User
Database. getUser(java.lang.String name)
Get user with the given name.User
SessionLocal. getUser()
Methods in org.h2.engine with parameters of type User Modifier and Type Method Description private SessionLocal
Database. createSession(User user)
(package private) SessionLocal
Database. createSession(User user, NetworkConnectionInfo networkConnectionInfo)
Create a session for the given user.void
Database. setMasterUser(User user)
Constructors in org.h2.engine with parameters of type User Constructor Description SessionLocal(Database database, User user, int id)
-
Uses of User in org.h2.mode
Constructors in org.h2.mode with parameters of type User Constructor Description PgCatalogSchema(Database database, User owner)
Creates new instance ofpg_catalog
schema. -
Uses of User in org.h2.schema
Constructors in org.h2.schema with parameters of type User Constructor Description InformationSchema(Database database, User owner)
Creates new instance of information schema.MetaSchema(Database database, int id, java.lang.String schemaName, User owner)
Creates a new instance of meta data schema. -
Uses of User in org.h2.security.auth
Methods in org.h2.security.auth that return User Modifier and Type Method Description User
Authenticator. authenticate(AuthenticationInfo authenticationInfo, Database database)
Perform user authentication.User
DefaultAuthenticator. authenticate(AuthenticationInfo authenticationInfo, Database database)
Methods in org.h2.security.auth with parameters of type User Modifier and Type Method Description private boolean
DefaultAuthenticator. updateRoles(AuthenticationInfo authenticationInfo, User user, Database database)
-
Uses of User in org.h2.table
Fields in org.h2.table declared as User Modifier and Type Field Description private User
TableView. owner
Methods in org.h2.table that return User Modifier and Type Method Description User
TableView. getOwner()
Methods in org.h2.table with parameters of type User Modifier and Type Method Description static TableView
TableView. createTempView(SessionLocal session, User owner, java.lang.String name, Column[] columnTemplates, Query query, Query topQuery)
Create a temporary view out of the given query.private void
TableView. setOwner(User owner)
private void
InformationSchemaTable. users(SessionLocal session, java.util.ArrayList<Row> rows, User user)
-