示例#1
0
  /** Create StreamService. */
  private StreamService() {
    super();
    this.logger = new Log4JWrapper(getClass());
    this.properties = DesdemonaProperties.getInstance();

    this.environment = Environment.valueOf(properties.getProperty("thinkparity.environment"));
  }
示例#2
0
 /**
  * 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);
 }