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

io.keyko.monitoring.examples.celo.CeloConfig Maven / Gradle / Ivy

There is a newer version: 0.2.9
Show newest version
package io.keyko.monitoring.examples.celo;

import com.typesafe.config.Config;
import io.keyko.monitoring.config.StreamerConfig;

public class CeloConfig extends StreamerConfig {

  private static final String ACCOUNTS_AGGREGATION_TOPIC = "kafka.accounts-aggregation-topic";
  private String accountsAggregationTopic;

  public CeloConfig(Config config) {

    super(config);
    this.setAccountsAggregationTopic(config.getString(ACCOUNTS_AGGREGATION_TOPIC));

  }

  public String getAccountsAggregationTopic() {
    return accountsAggregationTopic;
  }

  public void setAccountsAggregationTopic(String accountsAggregationTopic) {
    this.accountsAggregationTopic = accountsAggregationTopic;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy