ffac8ea1fc10f97c0108ba60322e9f0ba539567e
[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(
9     staticName = "of",
10     access = AccessLevel.PACKAGE)
11 @Data
12 @JsonIgnoreProperties(ignoreUnknown = true)
13 public class Key
14 {
15   private String user;
16   private String word;
17 }