This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit f3f113e76b4a76dfcf0e0c5abea2cb6443573499 Author: Claus Ibsen <[email protected]> AuthorDate: Fri Dec 17 13:01:49 2021 +0100 Deprecate --- .../camel/api/management/mbean/ManagedBacklogDebuggerMBean.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedBacklogDebuggerMBean.java b/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedBacklogDebuggerMBean.java index 2a6626a..0426cfb 100644 --- a/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedBacklogDebuggerMBean.java +++ b/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedBacklogDebuggerMBean.java @@ -139,7 +139,11 @@ public interface ManagedBacklogDebuggerMBean { @ManagedAttribute(description = "Whether to include file based message body in the trace message.") void setBodyIncludeFiles(boolean bodyIncludeFiles); + /** + * @deprecated use {@link #dumpTracedMessagesAsXml(String, boolean)} + */ @ManagedOperation(description = "Dumps the messages in xml format from the suspended breakpoint at the given node") + @Deprecated String dumpTracedMessagesAsXml(String nodeId); @ManagedOperation(description = "Dumps the messages in xml format from the suspended breakpoint at the given node, optionally including the exchange properties")
