Uses of Class
org.hackystat.sensorbase.resource.sensordata.jaxb.SensorData

Packages that use SensorData
org.hackystat.sensorbase.client Provides a client-side interface to the SensorBase. 
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.sensordata Provides the "SensorData" resource, which represents an atomic piece of software engineering process or product data. 
org.hackystat.sensorbase.resource.sensordata.jaxb Provides the JAXB generated classes corresponding to the SensorData XmlSchema. 
 

Uses of SensorData in org.hackystat.sensorbase.client
 

Methods in org.hackystat.sensorbase.client that return SensorData
 SensorData SensorBaseClient.getSensorData(SensorDataRef ref)
          Returns the named SensorData associated with the SensorDataRef.
 SensorData SensorBaseClient.getSensorData(java.lang.String uriString)
          Returns the SensorData for this user from this server given the passed uriString suffix.
 SensorData SensorBaseClient.getSensorData(java.lang.String email, javax.xml.datatype.XMLGregorianCalendar timestamp)
          Returns the SensorData for this user from this server with the specified timestamp.
 SensorData SensorBaseClient.makeSensorData(java.util.Map<java.lang.String,java.lang.String> keyValMap)
          Provides an easy way to construct SensorData instances.
 

Methods in org.hackystat.sensorbase.client with parameters of type SensorData
 void SensorBaseClient.putSensorData(SensorData data)
          Creates the passed SensorData on the server.
 

Uses of SensorData in org.hackystat.sensorbase.db
 

Methods in org.hackystat.sensorbase.db with parameters of type SensorData
 void DbManager.storeSensorData(SensorData data, java.lang.String xmlSensorData, java.lang.String xmlSensorDataRef)
          Persists a SensorData instance.
abstract  boolean DbImplementation.storeSensorData(SensorData data, java.lang.String xmlSensorData, java.lang.String xmlSensorDataRef)
          Persists a SensorData instance.
 

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

Methods in org.hackystat.sensorbase.db.derby with parameters of type SensorData
 boolean DerbyImplementation.storeSensorData(SensorData data, java.lang.String xmlSensorData, java.lang.String xmlSensorDataRef)
          Persists a SensorData instance.
 

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

Methods in org.hackystat.sensorbase.resource.sensordata that return SensorData
 SensorData SensorDataManager.makeSensorData(java.lang.String xmlString)
          Takes a String encoding of a SensorData in XML format and converts it to an instance.
 

Methods in org.hackystat.sensorbase.resource.sensordata with parameters of type SensorData
 java.lang.String SensorDataManager.makeSensorData(SensorData data)
          Returns the passed SensorData instance as a String encoding of its XML representation.
 SensorDataRef SensorDataManager.makeSensorDataRef(SensorData data)
          Returns a SensorDataRef instance constructed from a SensorData instance.
 java.lang.String SensorDataManager.makeSensorDataRefString(SensorData data)
          Returns the passed SensorData instance as a String encoding of its XML representation as a SensorDataRef object.
 void SensorDataManager.putSensorData(SensorData data)
          Updates the Manager with this sensor data.
 

Uses of SensorData in org.hackystat.sensorbase.resource.sensordata.jaxb
 

Fields in org.hackystat.sensorbase.resource.sensordata.jaxb with type parameters of type SensorData
protected  java.util.List<SensorData> SensorDatas.sensorData
           
 

Methods in org.hackystat.sensorbase.resource.sensordata.jaxb that return SensorData
 SensorData ObjectFactory.createSensorData()
          Create an instance of SensorData
 

Methods in org.hackystat.sensorbase.resource.sensordata.jaxb that return types with arguments of type SensorData
 java.util.List<SensorData> SensorDatas.getSensorData()
          Gets the value of the sensorData property.