counter: 1.1.7 - Fixed a bug in the assertion-logic for the expected state
[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 }