TEST-STORE:GREEN
[demos/kafka/wordcount] / src / main / java / de / juplo / kafka / wordcount / top10 / Key.java
1 package de.juplo.kafka.wordcount.top10;
2
3 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4 import lombok.*;
5
6
7 @NoArgsConstructor
8 @AllArgsConstructor(staticName = "of")
9 @Data
10 @JsonIgnoreProperties(ignoreUnknown = true)
11 public class Key
12 {
13   private String user;
14   private String word;
15 }