recorder:1.0.0 - send recordings keyed by username
[demos/kafka/wordcount] / src / main / java / de / juplo / kafka / wordcount / recorder / RecorderApplicationProperties.java
1 package de.juplo.kafka.wordcount.recorder;
2
3
4 import lombok.Getter;
5 import lombok.Setter;
6 import lombok.ToString;
7 import org.springframework.boot.context.properties.ConfigurationProperties;
8
9
10 @ConfigurationProperties("juplo.wordcount.recorder")
11 @Getter
12 @Setter
13 @ToString
14 public class RecorderApplicationProperties
15 {
16   private String bootstrapServer = "localhost:9092";
17   private String topic = "recordings";
18 }