projects
/
demos
/
kafka
/
wordcount
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
counter: 1.1.3 - Implemented an integration test for the old message-format
[demos/kafka/wordcount]
/
src
/
main
/
java
/
de
/
juplo
/
kafka
/
wordcount
/
counter
/
Key.java
1
package de.juplo.kafka.wordcount.counter;
2
3
import lombok.Value;
4
5
6
@Value(staticConstructor = "of")
7
public class Key
8
{
9
private final String username;
10
private final String word;
11
}