/** Create StreamService. */ private StreamService() { super(); this.logger = new Log4JWrapper(getClass()); this.properties = DesdemonaProperties.getInstance(); this.environment = Environment.valueOf(properties.getProperty("thinkparity.environment")); }
/** * Read the backup service user's environment. * * @return An <code>Environment</code>. */ private Environment readBackupEnvironment() { final String thinkParityEnvironment = properties.getProperty(JivePropertyNames.THINKPARITY_ENVIRONMENT); return Environment.valueOf(thinkParityEnvironment); }