counter: 1.2.7 - Refined bean-naming in `CounterApplicationConfiguration`
[demos/kafka/wordcount] / src / test / java / de / juplo / kafka / wordcount / counter / Message.java
1 package de.juplo.kafka.wordcount.counter;
2
3 import lombok.Value;
4
5
6 @Value(staticConstructor = "of")
7 public class Message
8 {
9   String key;
10   String value;
11 }