Added a simple implementation of the polling outbox pattern
[demos/kafka/outbox] / outbox / src / main / java / de / juplo / kafka / outbox / ApplicationProperties.java
diff --git a/outbox/src/main/java/de/juplo/kafka/outbox/ApplicationProperties.java b/outbox/src/main/java/de/juplo/kafka/outbox/ApplicationProperties.java
new file mode 100644 (file)
index 0000000..1a5dca6
--- /dev/null
@@ -0,0 +1,15 @@
+package de.juplo.kafka.outbox;
+
+import lombok.Getter;
+import lombok.Setter;
+import org.springframework.boot.context.properties.ConfigurationProperties;
+
+
+@ConfigurationProperties("de.juplo.kafka.outbox")
+@Getter
+@Setter
+public class ApplicationProperties
+{
+  String bootstrapServers = "localhost:9092";
+  String topic = "outbox";
+}