query: 1.0.6 - Refined naming in `QueryApplicationConfiguration`
[demos/kafka/wordcount] / src / main / java / de / juplo / kafka / wordcount / query / QueryApplicationConfiguration.java
index dfc4339..9f6769f 100644 (file)
@@ -20,14 +20,14 @@ public class QueryApplicationConfiguration
        @Bean
        public QueryStreamProcessor streamProcessor(
                        ServerProperties serverProperties,
-                       QueryApplicationProperties properties,
+                       QueryApplicationProperties applicationProperties,
                        ObjectMapper mapper,
                        ConfigurableApplicationContext context) throws IOException
        {
                String host;
                if (serverProperties.getAddress() == null)
                {
-                       HostInfo bootstrapServer = HostInfo.buildFromEndpoint(properties.getBootstrapServer());
+                       HostInfo bootstrapServer = HostInfo.buildFromEndpoint(applicationProperties.getBootstrapServer());
                        Socket socket = new Socket();
                        socket.connect(new InetSocketAddress(bootstrapServer.host(), bootstrapServer.port()));
                        host = socket.getLocalAddress().getHostAddress();
@@ -40,11 +40,11 @@ public class QueryApplicationConfiguration
                Integer port = serverProperties.getPort() == null ? 8080 : serverProperties.getPort();
 
                return new QueryStreamProcessor(
-                               properties.getApplicationId(),
+                               applicationProperties.getApplicationId(),
                                new HostInfo(host, port),
-                               properties.getBootstrapServer(),
-                               properties.getUsersInputTopic(),
-                               properties.getRankingInputTopic(),
+                               applicationProperties.getBootstrapServer(),
+                               applicationProperties.getUsersInputTopic(),
+                               applicationProperties.getRankingInputTopic(),
                                mapper,
                                context);
        }