popular: 1.1.1 - Refined output JSON
[demos/kafka/wordcount] / src / test / java / de / juplo / kafka / wordcount / stats / OutputWordCounter.java
1 package de.juplo.kafka.wordcount.stats;
2
3 import lombok.AllArgsConstructor;
4 import lombok.Data;
5 import lombok.NoArgsConstructor;
6
7
8 @Data
9 @NoArgsConstructor
10 @AllArgsConstructor(staticName = "of")
11 public class OutputWordCounter
12 {
13   String key;
14   long counter;
15 }