GRÜN: Erwartungen implementiert
[demos/kafka/training] / src / main / java / de / juplo / kafka / SumBusinessLogic.java
index 73db4cf..38485d2 100644 (file)
@@ -36,6 +36,9 @@ public class SumBusinessLogic
 
   public synchronized Long endSum(String user)
   {
-    return null;
+    if (!state.containsKey(user))
+      throw new IllegalStateException("No sumation for " + user + " in progress");
+
+    return state.get(user);
   }
 }