You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/10/22 08:03:56 UTC

[camel] 02/02: deprecate some operations for jmx that we dont use/want anymore

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit f9f3d13a2e8975d77a467ef6d450ce70d57c2cb7
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Oct 22 10:00:43 2020 +0200

    deprecate some operations for jmx that we dont use/want anymore
---
 .../apache/camel/api/management/mbean/ManagedCamelContextMBean.java   | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedCamelContextMBean.java b/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedCamelContextMBean.java
index 74bf784..34a931f 100644
--- a/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedCamelContextMBean.java
+++ b/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedCamelContextMBean.java
@@ -238,6 +238,7 @@ public interface ManagedCamelContextMBean extends ManagedPerformanceCounterMBean
      * @throws Exception     is thrown if error occurred
      */
     @ManagedOperation(description = "Returns the JSON schema representation of the endpoint parameters for the given component name")
+    @Deprecated
     String componentParameterJsonSchema(String componentName) throws Exception;
 
     /**
@@ -247,6 +248,7 @@ public interface ManagedCamelContextMBean extends ManagedPerformanceCounterMBean
      * @throws Exception      is thrown if error occurred
      */
     @ManagedOperation(description = "Returns the JSON schema representation of the data format parameters for the given data format name")
+    @Deprecated
     String dataFormatParameterJsonSchema(String dataFormatName) throws Exception;
 
     /**
@@ -256,6 +258,7 @@ public interface ManagedCamelContextMBean extends ManagedPerformanceCounterMBean
      * @throws Exception    is thrown if error occurred
      */
     @ManagedOperation(description = "Returns the JSON schema representation of the language parameters for the given language name")
+    @Deprecated
     String languageParameterJsonSchema(String languageName) throws Exception;
 
     /**
@@ -265,6 +268,7 @@ public interface ManagedCamelContextMBean extends ManagedPerformanceCounterMBean
      * @throws Exception is thrown if error occurred
      */
     @ManagedOperation(description = "Returns the JSON schema representation of the EIP parameters for the given EIP name")
+    @Deprecated
     String eipParameterJsonSchema(String eipName) throws Exception;
 
     /**