This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch rest-jmx in repository https://gitbox.apache.org/repos/asf/camel.git
commit 19371f939f6524d5a32bfc2ad8eef19769dbc779 Author: Claus Ibsen <[email protected]> AuthorDate: Sun Nov 30 11:31:39 2025 +0100 CAMEL-22742: camel-core - Rest DSL contract first should have jmx statistics --- .../camel/component/platform/http/DefaultPlatformHttpConsumer.java | 4 ++-- .../camel/component/platform/http/spi/PlatformHttpConsumerAware.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-platform-http/src/main/java/org/apache/camel/component/platform/http/DefaultPlatformHttpConsumer.java b/components/camel-platform-http/src/main/java/org/apache/camel/component/platform/http/DefaultPlatformHttpConsumer.java index 3b02916f5b00..6644cb70939c 100644 --- a/components/camel-platform-http/src/main/java/org/apache/camel/component/platform/http/DefaultPlatformHttpConsumer.java +++ b/components/camel-platform-http/src/main/java/org/apache/camel/component/platform/http/DefaultPlatformHttpConsumer.java @@ -65,8 +65,8 @@ public class DefaultPlatformHttpConsumer extends DefaultConsumer } @Override - public void registerAfterConfigured(AfterPropertiesConfigured processor) { - this.afterConfiguredListener = processor; + public void registerAfterConfigured(AfterPropertiesConfigured listener) { + this.afterConfiguredListener = listener; } @Override diff --git a/components/camel-platform-http/src/main/java/org/apache/camel/component/platform/http/spi/PlatformHttpConsumerAware.java b/components/camel-platform-http/src/main/java/org/apache/camel/component/platform/http/spi/PlatformHttpConsumerAware.java index c88348332d7a..337abd600ed7 100644 --- a/components/camel-platform-http/src/main/java/org/apache/camel/component/platform/http/spi/PlatformHttpConsumerAware.java +++ b/components/camel-platform-http/src/main/java/org/apache/camel/component/platform/http/spi/PlatformHttpConsumerAware.java @@ -33,6 +33,6 @@ public interface PlatformHttpConsumerAware { * <p/> * For example used by camel-rest-openapi */ - void registerAfterConfigured(AfterPropertiesConfigured processor); + void registerAfterConfigured(AfterPropertiesConfigured listener); }
