All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.wisetime.connector.config.ConnectorConfigKey Maven / Gradle / Ivy

There is a newer version: 2.2.6
Show newest version
/*
 * Copyright (c) 2018 Practice Insight Pty Ltd. All Rights Reserved.
 */

package io.wisetime.connector.config;

/**
 * @author [email protected]
 */
public enum ConnectorConfigKey implements RuntimeConfigKey {

  API_KEY("API_KEY"),
  CALLER_KEY("CALLER_KEY"),
  PERSISTENT_DIR("PERSISTENT_DIR"),
  CONNECTOR_PROPERTIES_FILE("CONNECTOR_PROPERTIES_FILE"),
  HEALTH_MAX_MINS_SINCE_SUCCESS("HEALTH_MAX_MINS_SINCE_SUCCESS"),
  API_BASE_URL("API_BASE_URL");

  private final String configKey;

  ConnectorConfigKey(String configKey) {
    this.configKey = configKey;
  }

  @Override
  public String getConfigKey() {
    return configKey;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy