public class OperationInvokingMessageHandler
extends org.springframework.integration.handler.AbstractReplyProducingMessageHandler
MessageHandler implementation for invoking JMX operations based on
the Message sent to its AbstractMessageHandler.handleMessage(Message) method. Message headers
will be checked first when resolving the 'objectName' and 'operationName' to be
invoked on an MBean. These values would be supplied with the Message headers
defined as JmxHeaders.OBJECT_NAME and JmxHeaders.OPERATION_NAME,
respectively. In either case, if no header is present, the value resolution
will fallback to the defaults, if any have been configured on this instance via
setObjectName(String) and setOperationName(String),
respectively.
The operation parameter(s), if any, must be available within the payload of the Message being handled. If the target operation expects multiple parameters, they can be provided in either a List or Map typed payload.
messagingTemplateEXPRESSION_PARSER, logger| Constructor and Description |
|---|
OperationInvokingMessageHandler(javax.management.MBeanServerConnection server)
Construct an instance based on the provided
MBeanServerConnection. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getComponentType() |
org.springframework.integration.IntegrationPatternType |
getIntegrationPatternType() |
protected java.lang.Object |
handleRequestMessage(org.springframework.messaging.Message<?> requestMessage) |
void |
setExpectReply(boolean expectReply)
Specify whether a reply Message is expected.
|
void |
setObjectName(java.lang.String objectName)
Specify a default ObjectName to use when no such header is
available on the Message being handled.
|
void |
setOperationName(java.lang.String operationName)
Specify an operation name to be invoked when no such
header is available on the Message being handled.
|
doInit, doInvokeAdvisedRequestHandler, getBeanClassLoader, getRequiresReply, handleMessageInternal, hasAdviceChain, onInit, setAdviceChain, setBeanClassLoader, setRequiresReplyaddNotPropagatedHeaders, createOutputMessage, getNotPropagatedHeaders, getOutputChannel, isAsync, messageBuilderForReply, produceOutput, resolveErrorChannel, sendErrorMessage, sendOutput, sendOutputs, setAsync, setNotPropagatedHeaders, setOutputChannel, setOutputChannelName, setSendTimeout, shouldCopyRequestHeaders, shouldSplitOutput, updateNotPropagatedHeadershandleMessage, onComplete, onError, onNext, onSubscribebuildSendTimer, destroy, getManagedName, getManagedType, getMetricsCaptor, getOrder, getOverrides, isLoggingEnabled, registerMetricsCaptor, sendTimer, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, shouldTrackafterPropertiesSet, extractTypeIfPossible, generateId, getApplicationContext, getApplicationContextId, getBeanDescription, getBeanFactory, getBeanName, getChannelResolver, getComponentName, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, isInitialized, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitpublic OperationInvokingMessageHandler(javax.management.MBeanServerConnection server)
MBeanServerConnection.server - the MBeanServerConnection to use.public void setObjectName(java.lang.String objectName)
objectName - The object name.public void setOperationName(java.lang.String operationName)
operationName - The operation name.public void setExpectReply(boolean expectReply)
expectReply - true if a reply is expected.public java.lang.String getComponentType()
getComponentType in interface org.springframework.integration.support.context.NamedComponentgetComponentType in class org.springframework.integration.handler.MessageHandlerSupportpublic org.springframework.integration.IntegrationPatternType getIntegrationPatternType()
getIntegrationPatternType in interface org.springframework.integration.IntegrationPatterngetIntegrationPatternType in class org.springframework.integration.handler.AbstractReplyProducingMessageHandlerprotected java.lang.Object handleRequestMessage(org.springframework.messaging.Message<?> requestMessage)
handleRequestMessage in class org.springframework.integration.handler.AbstractReplyProducingMessageHandler