diff options
| author | Ted Ross <tross@apache.org> | 2009-08-25 16:48:03 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-08-25 16:48:03 +0000 |
| commit | f121fc29d5d03b9e19ba980c32d4109d6c1d4313 (patch) | |
| tree | 6ec6f4557bf7bdc2a925a243ac54c98634ecbb44 /qpid/specs | |
| parent | a176921b2ebc4ca8ae6bd3529e27512c53a21bd7 (diff) | |
| download | qpid-python-f121fc29d5d03b9e19ba980c32d4109d6c1d4313.tar.gz | |
Added management visibility into the alternate exchange and auto-delete attributes
of an exchange.
Note that auto-delete is not implemented for exchanges.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@807712 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/specs')
| -rw-r--r-- | qpid/specs/management-schema.xml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/qpid/specs/management-schema.xml b/qpid/specs/management-schema.xml index bc38350a45..e72ba1cdd7 100644 --- a/qpid/specs/management-schema.xml +++ b/qpid/specs/management-schema.xml @@ -164,11 +164,13 @@ =============================================================== --> <class name="Exchange"> - <property name="vhostRef" type="objId" references="Vhost" access="RC" index="y" parentRef="y"/> - <property name="name" type="sstr" access="RC" index="y"/> - <property name="type" type="sstr" access="RO"/> - <property name="durable" type="bool" access="RC"/> - <property name="arguments" type="map" access="RO" desc="Arguments supplied in exchange.declare"/> + <property name="vhostRef" type="objId" references="Vhost" access="RC" index="y" parentRef="y"/> + <property name="name" type="sstr" access="RC" index="y"/> + <property name="type" type="sstr" access="RO"/> + <property name="durable" type="bool" access="RO"/> + <property name="autoDelete" type="bool" access="RO"/> + <property name="altExchange" type="objId" access="RO" optional="y"/> + <property name="arguments" type="map" access="RO" desc="Arguments supplied in exchange.declare"/> <statistic name="producerCount" type="hilo32" desc="Current producers on exchange"/> <statistic name="bindingCount" type="hilo32" desc="Current bindings"/> |
