query: 2.0.0 - (RED) The keys of the top10-topic are deserialized as JSON
[demos/kafka/wordcount] / src / main / java / de / juplo / kafka / wordcount / query / Entry.java
index 4866e72..80b4daf 100644 (file)
@@ -1,11 +1,11 @@
 package de.juplo.kafka.wordcount.query;
 
-import lombok.Value;
+import lombok.Data;
 
 
-@Value(staticConstructor = "of")
+@Data
 public class Entry
 {
-  private final String word;
-  private final Long count;
+  private String word;
+  private Long count;
 }