Uses of Class
org.hackystat.sensorbase.server.Server

Packages that use Server
org.hackystat.sensorbase.db Provides an interface to the underlying database persistency layer. 
org.hackystat.sensorbase.db.derby Provides an implementation of DbImplementation for Derby. 
org.hackystat.sensorbase.resource.projects Provides the "Projects" resource, which represents a set of Sensor Data resources for a particular set of users over a particular time frame. 
org.hackystat.sensorbase.resource.sensorbase Provides an abstract superclass for all SensorBase resources whose constructor provides common initialization-time processing. 
org.hackystat.sensorbase.resource.sensordata Provides the "SensorData" resource, which represents an atomic piece of software engineering process or product data. 
org.hackystat.sensorbase.resource.sensordatatypes Provides the SensorDataTypes and SensorDataType resource implementations. 
org.hackystat.sensorbase.resource.users Provides the Users and User resource implementations. 
org.hackystat.sensorbase.server Provides an HTTP server, which is responsible for processing GET, PUT, POST, and DELETE requests from other Hackystat web services. 
org.hackystat.sensorbase.test Provides a utility class to facilitate REST API tests. 
 

Uses of Server in org.hackystat.sensorbase.db
 

Fields in org.hackystat.sensorbase.db declared as Server
protected  Server DbImplementation.server
          Keeps a pointer to this Server for use in accessing the managers.
 

Constructors in org.hackystat.sensorbase.db with parameters of type Server
DbImplementation(Server server)
          Constructs a new DbImplementation.
DbManager(Server server)
          Creates a new DbManager which manages access to the underlying persistency layer(s).
 

Uses of Server in org.hackystat.sensorbase.db.derby
 

Constructors in org.hackystat.sensorbase.db.derby with parameters of type Server
DerbyImplementation(Server server)
          Instantiates the Derby implementation.
 

Uses of Server in org.hackystat.sensorbase.resource.projects
 

Fields in org.hackystat.sensorbase.resource.projects declared as Server
(package private)  Server ProjectManager.server
          The Server associated with this SdtManager.
 

Constructors in org.hackystat.sensorbase.resource.projects with parameters of type Server
ProjectManager(Server server)
          The constructor for ProjectManagers.
 

Uses of Server in org.hackystat.sensorbase.resource.sensorbase
 

Fields in org.hackystat.sensorbase.resource.sensorbase declared as Server
protected  Server SensorBaseResource.server
          The server.
 

Uses of Server in org.hackystat.sensorbase.resource.sensordata
 

Fields in org.hackystat.sensorbase.resource.sensordata declared as Server
(package private)  Server SensorDataManager.server
          The Server associated with this SensorDataManager.
 

Constructors in org.hackystat.sensorbase.resource.sensordata with parameters of type Server
SensorDataManager(Server server)
          The constructor for SensorDataManagers.
 

Uses of Server in org.hackystat.sensorbase.resource.sensordatatypes
 

Fields in org.hackystat.sensorbase.resource.sensordatatypes declared as Server
(package private)  Server SdtManager.server
          The Server associated with this SdtManager.
 

Constructors in org.hackystat.sensorbase.resource.sensordatatypes with parameters of type Server
SdtManager(Server server)
          The constructor for SdtManagers.
 

Uses of Server in org.hackystat.sensorbase.resource.users
 

Fields in org.hackystat.sensorbase.resource.users declared as Server
(package private)  Server UserManager.server
          The Server associated with this UserManager.
 

Constructors in org.hackystat.sensorbase.resource.users with parameters of type Server
UserManager(Server server)
          The constructor for UserManagers.
 

Uses of Server in org.hackystat.sensorbase.server
 

Methods in org.hackystat.sensorbase.server that return Server
static Server Server.newInstance()
          Creates a new instance of a SensorBase HTTP server, listening on the supplied port.
static Server Server.newInstance(ServerProperties serverProperties)
          Creates a new instance of a SensorBase HTTP server, listening on the supplied port.
static Server Server.newTestInstance()
          Creates a new instance of a SensorBase HTTP server suitable for unit testing.
 

Uses of Server in org.hackystat.sensorbase.test
 

Fields in org.hackystat.sensorbase.test declared as Server
protected static Server SensorBaseRestApiHelper.server
          The SensorBase server used in these tests.