Uses of Class
org.h2.engine.User

Packages that use User
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). 
org.h2.table Classes related to a table and table meta data. 
 

Uses of User in org.h2.command.ddl
 

Methods in org.h2.command.ddl with parameters of type User
 void AlterUser.setUser(User user)
           
 

Uses of User in org.h2.engine
 

Methods in org.h2.engine that return User
 User Database.findUser(java.lang.String name)
          Get the user if it exists, or null if not.
 User Session.getUser()
           
 User Database.getUser(java.lang.String name)
          Get user with the given name.
 

Methods in org.h2.engine that return types with arguments of type User
 java.util.ArrayList<User> Database.getAllUsers()
           
 

Methods in org.h2.engine with parameters of type User
 Session Database.createSession(User user)
          Create a session for the given user.
 void Database.setMasterUser(User user)
           
 

Constructors in org.h2.engine with parameters of type User
Session(Database database, User user, int id)
           
 

Uses of User in org.h2.schema
 

Methods in org.h2.schema that return User
 User Schema.getOwner()
          Get the owner of this schema.
 

Constructors in org.h2.schema with parameters of type User
Schema(Database database, int id, java.lang.String schemaName, User owner, boolean system)
          Create a new schema object.
 

Uses of User in org.h2.table
 

Methods in org.h2.table that return User
 User TableView.getOwner()
           
 

Methods in org.h2.table with parameters of type User
static TableView TableView.createTempView(Session session, User owner, java.lang.String name, Query query, Query topQuery)
          Create a temporary view out of the given query.