Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
  • java-operator-sdk
  • rework-state-handling
  • quarkus-36
  • bump-kotlinlogging-to-5.0.2
  • improve-patcher-documentation
  • use-internal-registry protected
  • v0.9 protected
  • kafka-nodeport-config-windows
  • v0.8 protected
  • test-k3d protected
  • simpleuc4 protected
  • reduce-code-duplication
  • test-coverage
  • code-cleanup
  • cleanup-commit-interval protected
  • delete-action-for-other-namespace
  • master protected
  • add-helm-test-debug2
  • add-helm-test-debug
  • v0.9.0 protected
  • v0.8.6 protected
  • v0.8.5 protected
  • v0.8.4 protected
  • v0.8.3 protected
  • v0.8.2 protected
  • v0.8.1 protected
  • v0.8.0 protected
  • v0.7.0 protected
  • v0.5.2 protected
  • v0.6.4 protected
  • v0.6.3 protected
  • v0.6.2 protected
  • v0.6.1 protected
  • v0.6.0 protected
  • v0.5.1 protected
  • v0.5.0 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
40 results

ConfigurationKeys.java

Blame
  • user avatar
    Björn Vonheiden authored
    Add the spesb prefix to all self implemented java packages of the
    project. Because this changes the fully qualified class name of
    the main classes the build.gradle files need to adopt to this.
    07b877b3
    History
    ConfigurationKeys.java 601 B
    package spesb.uc1.application;
    
    /**
     * Keys to access configuration parameters.
     */
    public final class ConfigurationKeys {
    
    	public static final String KAFKA_BOOTSTRAP_SERVERS = "kafka.bootstrap.servers";
    
    	public static final String KAFKA_OUTPUT_TOPIC = "kafka.output.topic";
    
    	public static final String KAFKA_INPUT_TOPIC = "kafka.input.topic";
    
    	public static final String NUM_THREADS = "num.threads";
    
    	public static final String COMMIT_INTERVAL_MS = "commit.interval.ms";
    
    	public static final String CACHE_MAX_BYTES_BUFFERING = "cache.max.bytes.buffering";
    
    	private ConfigurationKeys() {
    	}
    
    }