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 UserAlterUser. userMethods in org.h2.command.ddl with parameters of type User Modifier and Type Method Description (package private) static voidCreateUser. setPassword(User user, SessionLocal session, Expression password)Set the password for the given user.(package private) static voidCreateUser. setSaltAndHash(User user, SessionLocal session, Expression salt, Expression hash)Set the salt and hash for the given user.voidAlterUser. setUser(User user) -
Uses of User in org.h2.engine
Fields in org.h2.engine declared as User Modifier and Type Field Description private UserDatabase. systemUserprivate UserSessionLocal. userMethods in org.h2.engine that return User Modifier and Type Method Description static UserUserBuilder. buildUser(AuthenticationInfo authenticationInfo, Database database, boolean persistent)Build the database user starting from authentication informations.UserDatabase. findUser(java.lang.String name)Get the user if it exists, or null if not.UserDatabase. getSystemUser()Returns system user.UserDatabase. getUser(java.lang.String name)Get user with the given name.UserSessionLocal. getUser()Methods in org.h2.engine with parameters of type User Modifier and Type Method Description private SessionLocalDatabase. createSession(User user)(package private) SessionLocalDatabase. createSession(User user, NetworkConnectionInfo networkConnectionInfo)Create a session for the given user.voidDatabase. 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_catalogschema. -
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 UserAuthenticator. authenticate(AuthenticationInfo authenticationInfo, Database database)Perform user authentication.UserDefaultAuthenticator. authenticate(AuthenticationInfo authenticationInfo, Database database)Methods in org.h2.security.auth with parameters of type User Modifier and Type Method Description private booleanDefaultAuthenticator. 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 UserTableView. ownerMethods in org.h2.table that return User Modifier and Type Method Description UserTableView. getOwner()Methods in org.h2.table with parameters of type User Modifier and Type Method Description static TableViewTableView. 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 voidTableView. setOwner(User owner)private voidInformationSchemaTable. users(SessionLocal session, java.util.ArrayList<Row> rows, User user)
-