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 | 24a9ab133d6cc7d765c1bc1c6c9eaf83b2d3cdd2 (patch) | |
| tree | d61979385e948db50b64beb729e817bd68c0af21 /specs | |
| parent | 41c5a4f995cf16505f92257a0aa08ae967c8d466 (diff) | |
| download | qpid-python-24a9ab133d6cc7d765c1bc1c6c9eaf83b2d3cdd2.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/qpid@807712 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'specs')
| -rw-r--r-- | specs/management-schema.xml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/specs/management-schema.xml b/specs/management-schema.xml index bc38350a45..e72ba1cdd7 100644 --- a/specs/management-schema.xml +++ b/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"/> |
