Uses of Class
org.hackystat.sensorshell.SensorShellProperties

Packages that use SensorShellProperties
org.hackystat.sensorshell Implements the SensorShell service, which provides client-side "middleware" that facilitates collection and transmission of sensor data to a Hackystat server. 
org.hackystat.sensorshell.command Provides the commands for the SensorShell. 
 

Uses of SensorShellProperties in org.hackystat.sensorshell
 

Methods in org.hackystat.sensorshell that return SensorShellProperties
static SensorShellProperties SensorShellProperties.getOfflineMode(SensorShellProperties properties)
          Returns a new SensorShellProperties instance customized for offline data recovery.
 SensorShellProperties SingleSensorShell.getProperties()
          Returns the SensorShell properties instance used to create this SensorShell.
 SensorShellProperties Shell.getProperties()
          Returns the SensorShell properties instance used to create this SensorShell.
 SensorShellProperties SensorShell.getProperties()
          Returns the SensorShell properties instance used to create this SensorShell.
 SensorShellProperties MultiSensorShell.getProperties()
          Returns the SensorShell properties instance used to create this SensorShell.
static SensorShellProperties SensorShellProperties.getTestInstance(java.lang.String host, java.lang.String email, java.lang.String password)
          Constructs a "test" instance with the supplied three required properties.
 

Methods in org.hackystat.sensorshell with parameters of type SensorShellProperties
static SensorShellProperties SensorShellProperties.getOfflineMode(SensorShellProperties properties)
          Returns a new SensorShellProperties instance customized for offline data recovery.
 

Constructors in org.hackystat.sensorshell with parameters of type SensorShellProperties
MultiSensorShell(SensorShellProperties properties, java.lang.String toolName)
          Creates a new MultiSensorShell for multi-threaded transmission of SensorData instances to a SensorBase.
SensorShell(SensorShellProperties properties, boolean isInteractive)
          Constructs a new SensorShell instance that can be provided with notification data to be sent eventually to a specific user key and host.
SensorShell(SensorShellProperties properties, boolean isInteractive, java.lang.String tool)
          Constructs a new SensorShell instance that can be provided with notification data to be sent eventually to a specific user key and host.
SensorShell(SensorShellProperties properties, boolean isInteractive, java.lang.String toolName, java.io.File commandFile)
          Constructs a new SensorShell instance that can be provided with notification data to be sent eventually to a specific user key and host.
SensorShellProperties(SensorShellProperties orig, java.util.Properties newProps)
          Creates and returns a new SensorShellProperties instance which is initialized to the contents of the passed SensorProperties instance, with additional new properties overriding the previous selection.
SingleSensorShell(SensorShellProperties properties, boolean isInteractive)
          Constructs a new SensorShell instance that can be provided with notification data to be sent eventually to a specific user key and host.
SingleSensorShell(SensorShellProperties properties, boolean isInteractive, java.lang.String tool)
          Constructs a new SensorShell instance that can be provided with notification data to be sent eventually to a specific user key and host.
SingleSensorShell(SensorShellProperties properties, boolean isInteractive, java.lang.String toolName, java.io.File commandFile)
          Constructs a new SensorShell instance that can be provided with notification data to be sent eventually to a specific user key and host.
 

Uses of SensorShellProperties in org.hackystat.sensorshell.command
 

Fields in org.hackystat.sensorshell.command declared as SensorShellProperties
protected  SensorShellProperties Command.properties
          The SensorProperties.
 

Constructors in org.hackystat.sensorshell.command with parameters of type SensorShellProperties
AutoSendCommand(SingleSensorShell shell, SensorShellProperties properties)
          Creates the AutoSendCommand and starts a timer-based process running that wakes up and invokes send based upon the value of the SensorShellProperties autosend timeinterval.
Command(SingleSensorShell shell, SensorShellProperties properties)
          Constructs a Command instance.
PingCommand(SingleSensorShell shell, SensorShellProperties properties)
          Creates the PingCommand.
QuitCommand(SingleSensorShell shell, SensorShellProperties properties, SensorDataCommand sensorDataCommand, AutoSendCommand autoSendCommand)
          Creates the QuitCommand.
SensorDataCommand(SingleSensorShell shell, SensorShellProperties properties, PingCommand pingCommand, org.hackystat.sensorbase.client.SensorBaseClient client)
          Creates the SensorDataCommand.