Interface ManagedBrowsableEndpointMBean
- All Superinterfaces:
ManagedEndpointMBean
-
Method Summary
Modifier and TypeMethodDescriptionbrowseAllMessagesAsJSon
(Boolean includeBody) browseAllMessagesAsXml
(Boolean includeBody) browseExchange
(Integer index) browseMessageAsJSon
(Integer index, Boolean includeBody) browseMessageAsXml
(Integer index, Boolean includeBody) browseMessageBody
(Integer index) browseRangeMessagesAsJSon
(Integer fromIndex, Integer toIndex, Boolean includeBody) browseRangeMessagesAsXml
(Integer fromIndex, Integer toIndex, Boolean includeBody) int
int
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedEndpointMBean
getCamelId, getCamelManagementName, getEndpointBaseUri, getEndpointUri, getServiceLocationMetadata, getServiceLocationProtocol, getServiceLocationUrl, getState, isRemote, isSingleton
-
Method Details
-
getBrowseLimit
@ManagedAttribute(description="Maximum number of messages to browse by default") int getBrowseLimit() -
queueSize
-
browseExchange
@ManagedOperation(description="Get Exchange from queue by index") String browseExchange(Integer index) -
browseMessageBody
@ManagedOperation(description="Get message body from queue by index") String browseMessageBody(Integer index) -
browseMessageAsXml
@ManagedOperation(description="Get message as XML from queue by index") String browseMessageAsXml(Integer index, Boolean includeBody) -
browseAllMessagesAsXml
@ManagedOperation(description="Gets all the messages as XML from the queue") String browseAllMessagesAsXml(Boolean includeBody) -
browseRangeMessagesAsXml
@ManagedOperation(description="Gets the range of messages as XML from the queue") String browseRangeMessagesAsXml(Integer fromIndex, Integer toIndex, Boolean includeBody) -
browseMessageAsJSon
@ManagedOperation(description="Get message as JSon from queue by index") String browseMessageAsJSon(Integer index, Boolean includeBody) -
browseAllMessagesAsJSon
@ManagedOperation(description="Gets all the messages as JSon from the queue") String browseAllMessagesAsJSon(Boolean includeBody) -
browseRangeMessagesAsJSon
@ManagedOperation(description="Gets the range of messages as JSon from the queue") String browseRangeMessagesAsJSon(Integer fromIndex, Integer toIndex, Boolean includeBody)
-