NEU
[demos/kafka/chat] / src / main / java / de / juplo / kafka / chat / backend / ChatBackendProperties.java
index 4724f6b..cb5684c 100644 (file)
@@ -34,11 +34,13 @@ public class ChatBackendProperties
   @Setter
   public static class KafkaServicesProperties
   {
+    private String clientIdPrefix;
+    private String bootstrapServers = ":9092";
     private String topic = "test";
     private int numPartitions = 2;
   }
 
-  public enum ServiceType { inmemory }
+  public enum ServiceType { inmemory, kafka }
   public enum StorageStrategyType { files, mongodb }
   public enum ShardingStrategyType { none, kafkalike }
 }