Spring AMQP

org.springframework.amqp.core
Class FederatedExchange

java.lang.Object
  extended by org.springframework.amqp.core.AbstractDeclarable
      extended by org.springframework.amqp.core.AbstractExchange
          extended by org.springframework.amqp.core.FederatedExchange
All Implemented Interfaces:
Declarable, Exchange

Deprecated. Starting with version 3.0 RabbitMQ no longer supports 'x-federation' exchanges.

@Deprecated
public class FederatedExchange
extends AbstractExchange

Author:
Gary Russell
See Also:
AmqpAdmin

Field Summary
static FederatedExchange DEFAULT
          Deprecated.  
 
Constructor Summary
FederatedExchange(String name)
          Deprecated.  
FederatedExchange(String name, boolean durable, boolean autoDelete)
          Deprecated.  
FederatedExchange(String name, boolean durable, boolean autoDelete, Map<String,Object> arguments)
          Deprecated.  
 
Method Summary
 String getType()
          Deprecated. The type of the exchange.
 void setBackingType(String backingType)
          Deprecated.  
 void setUpstreamSet(String upstreamSet)
          Deprecated.  
 
Methods inherited from class org.springframework.amqp.core.AbstractExchange
addArgument, getArguments, getName, isAutoDelete, isDurable, toString
 
Methods inherited from class org.springframework.amqp.core.AbstractDeclarable
getDeclaringAdmins, setAdminsThatShouldDeclare, setShouldDeclare, shouldDeclare
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.springframework.amqp.core.Declarable
getDeclaringAdmins, shouldDeclare
 

Field Detail

DEFAULT

public static final FederatedExchange DEFAULT
Deprecated. 
Constructor Detail

FederatedExchange

public FederatedExchange(String name)
Deprecated. 

FederatedExchange

public FederatedExchange(String name,
                         boolean durable,
                         boolean autoDelete)
Deprecated. 

FederatedExchange

public FederatedExchange(String name,
                         boolean durable,
                         boolean autoDelete,
                         Map<String,Object> arguments)
Deprecated. 
Method Detail

setBackingType

public void setBackingType(String backingType)
Deprecated. 

setUpstreamSet

public void setUpstreamSet(String upstreamSet)
Deprecated. 

getType

public final String getType()
Deprecated. 
Description copied from interface: Exchange
The type of the exchange. See ExchangeTypes for some well-known examples.

Specified by:
getType in interface Exchange
Specified by:
getType in class AbstractExchange
Returns:
the type of the exchange

Spring AMQP