Uses of Interface
org.h2.server.Service

Packages that use Service
org.h2.server A small FTP server. 
org.h2.server.pg PostgreSQL server implementation of this database. 
org.h2.server.web The H2 Console tool. 
org.h2.tools Various tools. 
 

Uses of Service in org.h2.server
 

Classes in org.h2.server that implement Service
 class TcpServer
          The TCP server implements the native H2 database server protocol.
 

Uses of Service in org.h2.server.pg
 

Classes in org.h2.server.pg that implement Service
 class PgServer
          This class implements a subset of the PostgreSQL protocol as described here: http://developer.postgresql.org/pgdocs/postgres/protocol.html The PostgreSQL catalog is described here: http://www.postgresql.org/docs/7.4/static/catalogs.html
 

Uses of Service in org.h2.server.web
 

Classes in org.h2.server.web that implement Service
 class WebServer
          The web server is a simple standalone HTTP server that implements the H2 Console application.
 

Uses of Service in org.h2.tools
 

Methods in org.h2.tools that return Service
 Service Server.getService()
          Get the service attached to this server.
 

Constructors in org.h2.tools with parameters of type Service
Server(Service service, java.lang.String... args)
          Create a new server for the given service.