Class AmqpClientInterceptor
- java.lang.Object
-
- org.springframework.remoting.support.RemotingSupport
-
- org.springframework.remoting.support.RemoteAccessor
-
- org.springframework.amqp.remoting.client.AmqpClientInterceptor
-
- All Implemented Interfaces:
Advice,Interceptor,MethodInterceptor,Aware,BeanClassLoaderAware
- Direct Known Subclasses:
AmqpProxyFactoryBean
@Deprecated public class AmqpClientInterceptor extends org.springframework.remoting.support.RemoteAccessor implements MethodInterceptor
Deprecated.will be removed in 3.0.0.MethodInterceptorfor accessing RMI-style AMQP services.- Since:
- 1.2
- Author:
- David Bilge, Gary Russell
- See Also:
AmqpInvokerServiceExporter,AmqpProxyFactoryBean,RemoteAccessException
-
-
Constructor Summary
Constructors Constructor Description AmqpClientInterceptor()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AmqpTemplategetAmqpTemplate()Deprecated.org.springframework.remoting.support.RemoteInvocationFactorygetRemoteInvocationFactory()Deprecated.java.lang.StringgetRoutingKey()Deprecated.java.lang.Objectinvoke(MethodInvocation invocation)Deprecated.voidsetAmqpTemplate(AmqpTemplate amqpTemplate)Deprecated.The AMQP template to be used for sending messages and receiving results.voidsetRemoteInvocationFactory(org.springframework.remoting.support.RemoteInvocationFactory remoteInvocationFactory)Deprecated.Set the RemoteInvocationFactory to use for this accessor.voidsetRoutingKey(java.lang.String routingKey)Deprecated.The routing key to send calls to the service with.-
Methods inherited from class org.springframework.remoting.support.RemoteAccessor
getServiceInterface, setServiceInterface
-
-
-
-
Method Detail
-
invoke
public java.lang.Object invoke(MethodInvocation invocation) throws java.lang.Throwable
Deprecated.- Specified by:
invokein interfaceMethodInterceptor- Throws:
java.lang.Throwable
-
getAmqpTemplate
public AmqpTemplate getAmqpTemplate()
Deprecated.
-
setAmqpTemplate
public void setAmqpTemplate(AmqpTemplate amqpTemplate)
Deprecated.The AMQP template to be used for sending messages and receiving results. This class is using "Request/Reply" for sending messages as described in the Spring-AMQP documentation.- Parameters:
amqpTemplate- The amqp template.
-
getRoutingKey
public java.lang.String getRoutingKey()
Deprecated.
-
setRoutingKey
public void setRoutingKey(java.lang.String routingKey)
Deprecated.The routing key to send calls to the service with. Use this to route the messages to a specific queue on the broker. If not set, theAmqpTemplate's default routing key will be used.This property is useful if you want to use the same AmqpTemplate to talk to multiple services.
- Parameters:
routingKey- The routing key.
-
getRemoteInvocationFactory
public org.springframework.remoting.support.RemoteInvocationFactory getRemoteInvocationFactory()
Deprecated.
-
setRemoteInvocationFactory
public void setRemoteInvocationFactory(org.springframework.remoting.support.RemoteInvocationFactory remoteInvocationFactory)
Deprecated.Set the RemoteInvocationFactory to use for this accessor. Default is aDefaultRemoteInvocationFactory.A custom invocation factory can add further context information to the invocation, for example user credentials.
- Parameters:
remoteInvocationFactory- The remote invocation factory.
-
-