Properties properties = new java.util.Properties();
properties.load(new FileInputStream("client.properties"));
_username = properties.getProperty("username");
_password = properties.getProperty("password");
_deviceId = properties.getProperty("deviceId");
client = new SimpleClient(_username, _password);
}