org.apache.qpid.client.messaging.address
Class Link

java.lang.Object
  extended by org.apache.qpid.client.messaging.address.Link

public class Link
extends Object


Nested Class Summary
static class Link.FilterType
           
static class Link.Subscription
           
 
Field Summary
protected  int _consumerCapacity
           
protected  String _filter
           
protected  Link.FilterType _filterType
           
protected  boolean _isDurable
           
protected  boolean _isNoLocal
           
protected  int _producerCapacity
           
protected  String name
           
protected  Node node
           
protected  Link.Subscription subscription
           
 
Constructor Summary
Link()
           
 
Method Summary
 int getConsumerCapacity()
           
 String getFilter()
           
 Link.FilterType getFilterType()
           
 String getName()
           
 Node getNode()
           
 int getProducerCapacity()
           
 Link.Subscription getSubscription()
           
 boolean isDurable()
           
 boolean isNoLocal()
           
 void setConsumerCapacity(int capacity)
           
 void setDurable(boolean durable)
           
 void setFilter(String filter)
           
 void setFilterType(Link.FilterType type)
           
 void setName(String name)
           
 void setNode(Node node)
           
 void setNoLocal(boolean noLocal)
           
 void setProducerCapacity(int capacity)
           
 void setSubscription(Link.Subscription subscription)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

protected String name

_filter

protected String _filter

_filterType

protected Link.FilterType _filterType

_isNoLocal

protected boolean _isNoLocal

_isDurable

protected boolean _isDurable

_consumerCapacity

protected int _consumerCapacity

_producerCapacity

protected int _producerCapacity

node

protected Node node

subscription

protected Link.Subscription subscription
Constructor Detail

Link

public Link()
Method Detail

getNode

public Node getNode()

setNode

public void setNode(Node node)

isDurable

public boolean isDurable()

setDurable

public void setDurable(boolean durable)

getFilter

public String getFilter()

setFilter

public void setFilter(String filter)

getFilterType

public Link.FilterType getFilterType()

setFilterType

public void setFilterType(Link.FilterType type)

isNoLocal

public boolean isNoLocal()

setNoLocal

public void setNoLocal(boolean noLocal)

getConsumerCapacity

public int getConsumerCapacity()

setConsumerCapacity

public void setConsumerCapacity(int capacity)

getProducerCapacity

public int getProducerCapacity()

setProducerCapacity

public void setProducerCapacity(int capacity)

getName

public String getName()

setName

public void setName(String name)

getSubscription

public Link.Subscription getSubscription()

setSubscription

public void setSubscription(Link.Subscription subscription)


Licensed to the Apache Software Foundation