Moved postage of messages into a reusable standalone implementation
[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
deleted file mode 100644 (file)
index 1a5dca6..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-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";
-}