You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by tr...@apache.org on 2014/10/30 15:03:04 UTC

svn commit: r1635503 - /qpid/dispatch/trunk/python/qpid_dispatch/management/qdrouter.json

Author: tross
Date: Thu Oct 30 14:03:03 2014
New Revision: 1635503

URL: http://svn.apache.org/r1635503
Log:
NO-JIRA - Cleaned up the schema file: 4-space indents, removed tabs, added missing descriptions.

Modified:
    qpid/dispatch/trunk/python/qpid_dispatch/management/qdrouter.json

Modified: qpid/dispatch/trunk/python/qpid_dispatch/management/qdrouter.json
URL: http://svn.apache.org/viewvc/qpid/dispatch/trunk/python/qpid_dispatch/management/qdrouter.json?rev=1635503&r1=1635502&r2=1635503&view=diff
==============================================================================
--- qpid/dispatch/trunk/python/qpid_dispatch/management/qdrouter.json (original)
+++ qpid/dispatch/trunk/python/qpid_dispatch/management/qdrouter.json Thu Oct 30 14:03:03 2014
@@ -1,423 +1,440 @@
 {
-  "prefix": "org.apache.qpid.dispatch",
-  "includes": {
-    "common": {
-      "description":"Attributes common to all entities.",
-      "attributes": {
-        "name": {
-          "type": "String",
-          "required": true,
-          "unique": true,
-          "default": "$identity",
-          "description": "Unique name, can be changed."
-        },
-        "identity": {
-          "type": "String",
-          "required": true,
-          "unique": true,
-          "default": "$name",
-          "description": "Unique identity, will not change."
-        },
-        "type": {
-          "type": "String",
-          "required": true,
-          "value": "$$entityType",
-          "description": "Management entity type."
+    "prefix": "org.apache.qpid.dispatch",
+    "includes": {
+        "common": {
+            "description":"Attributes common to all entities.",
+            "attributes": {
+                "name": {
+                    "type": "String",
+                    "required": true,
+                    "unique": true,
+                    "default": "$identity",
+                    "description": "Unique name, can be changed."
+                },
+                "identity": {
+                    "type": "String",
+                    "required": true,
+                    "unique": true,
+                    "default": "$name",
+                    "description": "Unique identity, will not change."
+                },
+                "type": {
+                    "type": "String",
+                    "required": true,
+                    "value": "$$entityType",
+                    "description": "Management entity type."
+                }
+            }
+        },
+
+        "hostAddress": {
+            "description":"Specifies where in the Internet to find a peer AMQP container.",
+            "attributes": {
+                "addr": {
+                    "description":"Host address: ipv4 or ipv6 literal or a host name",
+                    "type": "String",
+                    "default": "0.0.0.0"
+                },
+                "port": {
+                    "description":"Port number or symbolic service name",
+                    "type": "String",
+                    "default": "amqp"
+                }
+            }
+        },
+
+        "connection": {
+            "description":"Attributes common to AMQP connections",
+            "attributes": {
+                "saslMechanisms": {
+                    "type": "String",
+                    "required": true,
+                    "description": "Comma separated list of accepted SASL authentication mechanisms."
+                },
+                "role": {
+                    "type": [
+                        "normal",
+                        "inter-router",
+                        "on-demand"
+                    ],
+                    "default": "normal",
+                    "description": "The role of an established connection. In the normal role, the connection is assumed to be used for AMQP clients that are doing normal message delivery over the connection.  In the inter-router role, the connection is assumed to be to another router in the network.  Inter-router discovery and routing protocols can only be used over interRouter connections. "
+                }
+            }
+        },
+
+        "sslProfile": {
+            "description":"Attributes for setting TLS/SSL configuration for connections.",
+            "attributes": {
+                "certDb": {
+                    "type": "String",
+                    "description": "The path to the database that contains the public certificates of trusted certificate authorities (CAs). "
+                },
+                "certFile": {
+                    "type": "String",
+                    "description": "The path to the file containing the PEM-formatted public certificate to be used on the local end of any connections using this profile. "
+                },
+                "keyFile": {
+                    "type": "String",
+                    "description": "The path to the file containing the PEM-formatted private key for the above certificate. "
+                },
+                "passwordFile": {
+                    "type": "String",
+                    "description": "If the above private key is password protected, this is the path to a file containing the password that unlocks the certificate key. "
+                },
+                "password": {
+                    "type": "String",
+                    "description": "An alternative to storing the password in a file referenced by passwordFile is to supply the password right here in the configuration file.  This option can be used by supplying the password in the 'password' option.  Don't use both password and passwordFile in the same profile. "
+                }
+            }
         }
-      }
-    },
-    "ipAddress": {
-      "attributes": {
-        "addr": {
-          "description":"IP address: ipv4 or ipv6 literal or a host name",
-          "type": "String",
-          "default": "0.0.0.0"
-        },
-        "port": {
-          "description":"Port number or symbolic service name",
-          "type": "String",
-          "default": "amqp"
-        }
-      }
-    },
-    "connection": {
-      "attributes": {
-        "saslMechanisms": {
-          "type": "String",
-          "required": true,
-          "description": "Comma separated list of accepted SASL authentication mechanisms."
-        },
-        "role": {
-          "type": [
-            "normal",
-            "inter-router",
-            "on-demand"
-          ],
-          "default": "normal",
-          "description": "The role of an established connection. In the normal role, the connection is assumed to be used for AMQP clients that are doing normal message delivery over the connection.  In the inter-router role, the connection is assumed to be to another router in the network.  Inter-router discovery and routing protocols can only be used over interRouter connections. "
-        }
-      }
-    },
-    "sslProfile": {
-      "attributes": {
-        "certDb": {
-          "type": "String",
-          "description": "The path to the database that contains the public certificates of trusted certificate authorities (CAs). "
-        },
-        "certFile": {
-          "type": "String",
-          "description": "The path to the file containing the PEM-formatted public certificate to be used on the local end of any connections using this profile. "
-        },
-        "keyFile": {
-          "type": "String",
-          "description": "The path to the file containing the PEM-formatted private key for the above certificate. "
-        },
-        "passwordFile": {
-          "type": "String",
-          "description": "If the above private key is password protected, this is the path to a file containing the password that unlocks the certificate key. "
-        },
-        "password": {
-          "type": "String",
-          "description": "An alternative to storing the password in a file referenced by passwordFile is to supply the password right here in the configuration file.  This option can be used by supplying the password in the 'password' option.  Don't use both password and passwordFile in the same profile. "
-        }
-      }
-    }
-  },
-  "entityTypes": {
-    "container": {
-      "operations": ["CREATE", "READ"],
-      "singleton": true,
-      "include": [
-        "common"
-      ],
-      "attributes": {
-        "containerName": {
-          "type": "String",
-          "description": "The  name of the AMQP container.  If not specified, the container name will be set to a value of the container's choosing.  The automatically assigned container name is not guaranteed to be persistent across restarts of the container."
-        },
-        "workerThreads": {
-          "type": "Integer",
-          "default": "1",
-          "description": "The number of threads that will be created to process message traffic and other application work (timers, non-amqp file descriptors, etc.) "
-        }
-      }
-    },
-
-    "router": {
-      "operations": ["CREATE", "READ"],
-      "singleton": true,
-      "include": [
-        "common"
-      ],
-      "attributes": {
-        "routerId": {
-          "type": "String"
-        },
-        "mode": {
-          "type": [
-            "standalone",
-            "interior",
-            "edge",
-            "endpoint"
-          ],
-          "default": "standalone",
-          "description": "In standalone mode, the router operates as a single component.  It does not participate in the routing protocol and therefore will not coorperate with other routers. In interior mode, the router operates in cooreration with other interior routers in an interconnected network.  In edge mode, the router operates with an uplink into an interior router network. Edge routers are typically used as connection concentrators or as security firewalls for access into the interior network. "
-        },
-        "area": {
-          "type": "String",
-          "description": ""
-        },
-        "helloInterval": {
-          "type": "Integer",
-          "default": 1,
-          "description": ""
-        },
-        "helloMaxAge": {
-          "type": "Integer",
-          "default": 3,
-          "description": ""
-        },
-        "raInterval": {
-          "type": "Integer",
-          "default": 30,
-          "description": ""
-        },
-        "remoteLsMaxAge": {
-          "type": "Integer",
-          "default": 60,
-          "description": ""
-        },
-        "mobileAddrMaxAge": {
-          "type": "Integer",
-          "default": 60,
-          "description": ""
-        },
-	"addrCount": {"type": "Integer"},
-	"linkCount": {"type": "Integer"},
-	"nodeCount": {"type": "Integer"}
-      }
-    },
-
-    "listener": {
-      "description": "Listens for incoming connections to the router",
-      "operations": ["CREATE", "READ"],
-      "include": [
-        "common",
-        "sslProfile",
-        "ipAddress",
-        "connection"
-      ],
-      "attributes": {
-        "requirePeerAuth": {
-          "type": "Boolean",
-          "default": true,
-          "description": "Only for listeners using SSL.  If set to \"yes\", attached clients will be required to supply a certificate.  If the certificate is not traceable to a CA in the ssl profile's cert-db, authentication fails for the connection. "
-        },
-        "trustedCerts": {
-          "type": "String",
-          "description": "This optional setting can be used to reduce the set of available CAs for client authentication.  If used, this setting must provide a path to a PEM file that contains the trusted certificates. "
-        },
-        "allowUnsecured": {
-          "type": "Boolean",
-          "default": false,
-          "description": "For listeners using SSL only.  If set to \"yes\", this option causes the listener to watch the initial network traffic to determine if the client is using SSL or is running in-the-clear.  The listener will enable SSL only if the client uis using SSL. "
-        },
-        "allowNoSasl": {
-          "type": "Boolean",
-          "default": false,
-          "description": "If set to \"yes\", this option causes the listener to allow clients to connect even if they skip the SASL authentication protocol. "
-        },
-        "maxFrameSize": {
-          "type": "Integer",
-          "default": 65536,
-          "description": "Defaults to 65536.  If specified, it is the maximum frame size in octets that will be used in the connection-open negotiation with a connected peer.  The frame size is the largest contiguous set of uniterruptible data that can be sent for a message delivery over the connection. Interleaving of messages on different links is done at frame granularity. "
-        }
-      }
-    },
-    "connector": {
-      "description": "Establishes an outgoing connections from the router",
-      "operations": ["CREATE", "READ"],
-      "include": [
-        "common",
-        "sslProfile",
-        "ipAddress",
-        "connection"
-      ],
-      "attributes": {
-        "allowRedirect": {
-          "type": "Boolean",
-          "default": true,
-          "description": ""
-        },
-        "maxFrameSize": {
-          "type": "Integer",
-          "default": 65536,
-          "description": "Maximum frame size in octets that will be used in the connection-open negotiation with a connected peer.  The frame size is the largest contiguous set of uniterruptible data that can be sent for a message delivery over the connection. Interleaving of messages on different links is done at frame granularity. "
-        }
-      }
-    },
-
-    "log": {
-      "description": "Set the level of logging output from a particular module",
-      "include": [
-        "common"
-      ],
-      "operations": ["CREATE", "READ"],
-      "attributes": {
-        "module": {
-          "type":[
-            "ROUTER",
-            "MESSAGE",
-            "SERVER",
-            "CAGENT",
-	    "AGENT",
-            "CONTAINER",
-            "CONFIG",
-            "DEFAULT",
-            "ERROR",
-	    "DISPATCH"
-          ],
-          "required": true,
-          "description": "Module to configure logging level. The special module 'DEFAULT' specifies logging for modules that don't have explicit log sections."
-        },
-        "level": {
-          "type": [
-            "none",
-            "trace",
-            "debug",
-            "info",
-            "notice",
-            "warning",
-            "error",
-            "critical"
-          ],
-          "default": "info",
-          "description": "Indicates the minimum logging level for the module. E.g. 'warning' means log warning, error and critical messages. 'trace' logs all messages. 'none' disables logging for the module. "
-        },
-        "timestamp": {
-          "type": "Boolean",
-          "default": true,
-          "description": "Include timestamp in log messages"
-        },
-        "source": {
-          "type": "Boolean",
-          "default": false,
-          "description": "Include source file and line number in log messages"
-        },
-        "output": {
-          "type": "String",
-          "description": "Where to send log messages. Can be 'stderr', 'syslog' or a file name. "
-        }
-      }
     },
 
-    "fixedAddress": {
-      "operations": ["CREATE", "READ"],
-      "include": [
-        "common"
-      ],
-      "attributes": {
-        "prefix": {
-          "type": "String",
-          "required": true,
-          "description": "The address prefix (always starting with \"/\"). "
-        },
-        "phase": {
-          "type": "Integer",
-          "description": ""
-        },
-        "fanout": {
-          "type": [
-            "multiple",
-            "single"
-          ],
-          "default": "multiple",
-          "description": "One of \"multiple\" or \"single\".  Multiple fanout is a non-competing pattern.  If there are multiple consumers using the same address, each consumer will receive its own copy of every message sent to the address.  Single fanout is a competing pattern where each message is sent to only one consumer. "
-        },
-        "bias": {
-          "type": [
-            "closest",
-            "spread"
-          ],
-          "default": "closest",
-          "description": "Only if fanout is single.  One of \"closest\" or \"spread\".  Closest bias means that messages to an address will always be delivered to the closest (lowest cost) subscribed consumer. Spread bias will distribute the messages across subscribers in an approximately even manner. "
-        }
-      }
-    },
-
-    "waypoint": {
-      "operations": ["CREATE", "READ"],
-      "include": [
-        "common"
-      ],
-      "attributes": {
-        "address": {
-          "type": "String",
-          "required": true
+    "entityTypes": {
+        "container": {
+            "description":"Attributes related to the AMQP container",
+            "operations": ["CREATE", "READ"],
+            "singleton": true,
+            "include": [
+                "common"
+            ],
+            "attributes": {
+                "containerName": {
+                    "type": "String",
+                    "description": "The  name of the AMQP container.  If not specified, the container name will be set to a value of the container's choosing.  The automatically assigned container name is not guaranteed to be persistent across restarts of the container."
+                },
+                "workerThreads": {
+                    "type": "Integer",
+                    "default": "1",
+                    "description": "The number of threads that will be created to process message traffic and other application work (timers, non-amqp file descriptors, etc.) "
+                }
+            }
+        },
+
+        "router": {
+            "description":"Tracks peer routers and computes routes to destinations",
+            "operations": ["CREATE", "READ"],
+            "singleton": true,
+            "include": [
+                "common"
+            ],
+            "attributes": {
+                "routerId": {
+                    "description":"Router's unique identity",
+                    "type": "String"
+                },
+                "mode": {
+                    "type": [
+                        "standalone",
+                        "interior",
+                        "edge",
+                        "endpoint"
+                    ],
+                    "default": "standalone",
+                    "description": "In standalone mode, the router operates as a single component.  It does not participate in the routing protocol and therefore will not coorperate with other routers. In interior mode, the router operates in cooreration with other interior routers in an interconnected network.  In edge mode, the router operates with an uplink into an interior router network. Edge routers are typically used as connection concentrators or as security firewalls for access into the interior network. "
+                },
+                "area": {
+                    "type": "String",
+                    "description": "Unused placeholder"
+                },
+                "helloInterval": {
+                    "type": "Integer",
+                    "default": 1,
+                    "description": "Interval in seconds between HELLO messages sent to neighbor routers"
+                },
+                "helloMaxAge": {
+                    "type": "Integer",
+                    "default": 3,
+                    "description": "Time in seconds after which a neighbor is declared lost if no HELLO is received"
+                },
+                "raInterval": {
+                    "type": "Integer",
+                    "default": 30,
+                    "description": "Interval in seconds between Router-Advertisements sent to all routers"
+                },
+                "remoteLsMaxAge": {
+                    "type": "Integer",
+                    "default": 60,
+                    "description": "Time in seconds after which link state is declared stale if no RA is received"
+                },
+                "mobileAddrMaxAge": {
+                    "type": "Integer",
+                    "default": 60,
+                    "description": "Time in seconds after which mobile addresses are declared stale if no RA is received"
+                },
+	            "addrCount": {"type": "Integer", "description":"Number of addresses known to the router"},
+	            "linkCount": {"type": "Integer", "description":"Number of links attached to the router node"},
+	            "nodeCount": {"type": "Integer", "description":"Number of known peer router nodes"}
+            }
+        },
+
+        "listener": {
+            "description": "Listens for incoming connections to the router",
+            "operations": ["CREATE", "READ"],
+            "include": [
+                "common",
+                "sslProfile",
+                "hostAddress",
+                "connection"
+            ],
+            "attributes": {
+                "requirePeerAuth": {
+                    "type": "Boolean",
+                    "default": true,
+                    "description": "Only for listeners using SSL.  If set to \"yes\", attached clients will be required to supply a certificate.  If the certificate is not traceable to a CA in the ssl profile's cert-db, authentication fails for the connection. "
+                },
+                "trustedCerts": {
+                    "type": "String",
+                    "description": "This optional setting can be used to reduce the set of available CAs for client authentication.  If used, this setting must provide a path to a PEM file that contains the trusted certificates. "
+                },
+                "allowUnsecured": {
+                    "type": "Boolean",
+                    "default": false,
+                    "description": "For listeners using SSL only.  If set to \"yes\", this option causes the listener to watch the initial network traffic to determine if the client is using SSL or is running in-the-clear.  The listener will enable SSL only if the client uis using SSL. "
+                },
+                "allowNoSasl": {
+                    "type": "Boolean",
+                    "default": false,
+                    "description": "If set to \"yes\", this option causes the listener to allow clients to connect even if they skip the SASL authentication protocol. "
+                },
+                "maxFrameSize": {
+                    "type": "Integer",
+                    "default": 65536,
+                    "description": "Defaults to 65536.  If specified, it is the maximum frame size in octets that will be used in the connection-open negotiation with a connected peer.  The frame size is the largest contiguous set of uniterruptible data that can be sent for a message delivery over the connection. Interleaving of messages on different links is done at frame granularity. "
+                }
+            }
         },
+
         "connector": {
-          "type": "String",
-          "required": true
-        },
-        "inPhase": {
-          "type": "Integer",
-          "default": -1
-        },
-        "outPhase": {
-          "type": "Integer",
-          "default": -1
+            "description": "Establishes an outgoing connections from the router",
+            "operations": ["CREATE", "READ"],
+            "include": [
+                "common",
+                "sslProfile",
+                "hostAddress",
+                "connection"
+            ],
+            "attributes": {
+                "allowRedirect": {
+                    "type": "Boolean",
+                    "default": true,
+                    "description": "Allow the peer to redirect this connection to another address"
+                },
+                "maxFrameSize": {
+                    "type": "Integer",
+                    "default": 65536,
+                    "description": "Maximum frame size in octets that will be used in the connection-open negotiation with a connected peer.  The frame size is the largest contiguous set of uniterruptible data that can be sent for a message delivery over the connection. Interleaving of messages on different links is done at frame granularity. "
+                }
+            }
+        },
+
+        "log": {
+            "description": "Set the level of logging output from a particular module",
+            "include": [
+                "common"
+            ],
+            "operations": ["CREATE", "READ"],
+            "attributes": {
+                "module": {
+                    "type":[
+                        "ROUTER",
+                        "MESSAGE",
+                        "SERVER",
+                        "CAGENT",
+	                    "AGENT",
+                        "CONTAINER",
+                        "CONFIG",
+                        "DEFAULT",
+                        "ERROR",
+	                    "DISPATCH"
+                    ],
+                    "required": true,
+                    "description": "Module to configure logging level. The special module 'DEFAULT' specifies logging for modules that don't have explicit log sections."
+                },
+                "level": {
+                    "type": [
+                        "none",
+                        "trace",
+                        "debug",
+                        "info",
+                        "notice",
+                        "warning",
+                        "error",
+                        "critical"
+                    ],
+                    "default": "info",
+                    "description": "Indicates the minimum logging level for the module. E.g. 'warning' means log warning, error and critical messages. 'trace' logs all messages. 'none' disables logging for the module. "
+                },
+                "timestamp": {
+                    "type": "Boolean",
+                    "default": true,
+                    "description": "Include timestamp in log messages"
+                },
+                "source": {
+                    "type": "Boolean",
+                    "default": false,
+                    "description": "Include source file and line number in log messages"
+                },
+                "output": {
+                    "type": "String",
+                    "description": "Where to send log messages. Can be 'stderr', 'syslog' or a file name. "
+                }
+            }
+        },
+
+        "fixedAddress": {
+            "description":"Establishes semantics for addresses starting with a prefix",
+            "operations": ["CREATE", "READ"],
+            "include": [
+                "common"
+            ],
+            "attributes": {
+                "prefix": {
+                    "type": "String",
+                    "required": true,
+                    "description": "The address prefix (always starting with \"/\"). "
+                },
+                "phase": {
+                    "type": "Integer",
+                    "description": "The phase of a multi-hop address passing through one or more waypoints"
+                },
+                "fanout": {
+                    "type": [
+                        "multiple",
+                        "single"
+                    ],
+                    "default": "multiple",
+                    "description": "One of \"multiple\" or \"single\".  Multiple fanout is a non-competing pattern.  If there are multiple consumers using the same address, each consumer will receive its own copy of every message sent to the address.  Single fanout is a competing pattern where each message is sent to only one consumer. "
+                },
+                "bias": {
+                    "type": [
+                        "closest",
+                        "spread"
+                    ],
+                    "default": "closest",
+                    "description": "Only if fanout is single.  One of \"closest\" or \"spread\".  Closest bias means that messages to an address will always be delivered to the closest (lowest cost) subscribed consumer. Spread bias will distribute the messages across subscribers in an approximately even manner. "
+                }
+            }
+        },
+
+        "waypoint": {
+            "description":"A remote node that messages for an address pass through",
+            "operations": ["CREATE", "READ"],
+            "include": [
+                "common"
+            ],
+            "attributes": {
+                "address": {
+                    "description":"The AMQP address of the waypoint",
+                    "type": "String",
+                    "required": true
+                },
+                "connector": {
+                    "description":"The name of the on-demand connector used to reach the waypoint's container",
+                    "type": "String",
+                    "required": true
+                },
+                "inPhase": {
+                    "description":"The phase of the address as it is routed _to_ the waypoint",
+                    "type": "Integer",
+                    "default": -1
+                },
+                "outPhase": {
+                    "description":"The phase of the address as it is routed _from_ the waypoint",
+                    "type": "Integer",
+                    "default": -1
+                }
+            }
+        },
+
+        "dummy": {
+            "description": "Dummy entity for test purposes.",
+            "operations": ["CREATE", "READ", "UPDATE", "DELETE", "CALLME"],
+            "include": ["common"],
+            "attributes": {
+                "arg1": {"type": "String"},
+                "arg2": {"type": "String"},
+	            "num1": {"type": "Integer"},
+	            "num2": {"type": "Integer"}
+            }
+        },
+
+        "router.link": {
+            "description": "Link to another AMQP endpoint: router node, client or other AMQP process.",
+            "operations": ["READ"],
+            "include": ["common"],
+            "attributes": {
+	            "linkType": {"type": ["endpoint", "waypoint", "inter-router", "inter-area"]},
+	            "linkDir": {"type": ["in", "out"]},
+	            "owningAddr": {"type": "String"},
+	            "eventFifoDepth": {"type": "Integer"},
+	            "msgFifoDepth": {"type": "Integer"}
+            }
+        },
+
+        "router.address": {
+            "description": "AMQP address managed by the router",
+            "operations": ["READ"],
+            "include": ["common"],
+            "attributes": {
+	            "inProcess": {"type": "Boolean"},
+	            "subscriberCount": {"type": "Integer"},
+	            "remoteCount": {"type": "Integer"},
+	            "deliveriesIngress": {"type": "Integer"},
+	            "deliveriesEgress": {"type": "Integer"},
+	            "deliveriesTransit": {"type": "Integer"},
+	            "deliveriesToContainer": {"type": "Integer"},
+	            "deliveriesFromContainer": {"type": "Integer"}
+            }
+        },
+
+        "router.node": {
+            "description": "AMQP node managed by the router",
+            "operations": ["READ"],
+            "include": ["common"],
+            "attributes": {
+	            "addr": {"type": "String"},
+	            "nextHop": {"type": "Integer"},
+	            "routerLink": {"type": "Integer"},
+	            "validOrigins": {"type": "List"}
+            }
+        },
+
+        "connection": {
+            "description": "Connections to the router's container",
+            "operations": ["READ"],
+            "include": ["common"],
+            "attributes": {
+	            "container": {"type": "String"} ,
+	            "state": {"type": [
+	                "connecting",
+	                "opening",
+	                "operational",
+	                "failed",
+	                "user"
+	            ]},
+	            "host": {"type": "String"},
+	            "dir": {"type": ["in", "out"]},
+	            "role": {"type": "String"},
+	            "sasl": {"type": "String"}
+            }
+        },
+
+        "allocator": {
+            "description": "Memory allocation pool.",
+            "operations": ["READ"],
+            "include": ["common"],
+            "attributes": {
+	            "typeSize": {"type": "Integer"},
+	            "transferBatchSize": {"type": "Integer"},
+	            "localFreeListMax": {"type": "Integer"},
+	            "globalFreeListMax": {"type": "Integer"},
+	            "totalAllocFromHeap": {"type": "Integer"},
+	            "totalFreeToHeap": {"type": "Integer"},
+	            "heldByThreads": {"type": "Integer"},
+	            "batchesRebalancedToThreads": {"type": "Integer"},
+	            "batchesRebalancedToGlobal": {"type": "Integer"}
+            }
         }
-      }
-    },
-
-    "dummy": {
-      "description": "Dummy entity for test purposes.",
-      "operations": ["CREATE", "READ", "UPDATE", "DELETE", "CALLME"],
-      "include": ["common"],
-      "attributes": {
-        "arg1": {"type": "String"},
-        "arg2": {"type": "String"},
-	"num1": {"type": "Integer"},
-	"num2": {"type": "Integer"}
-      }
-    },
-
-    "router.link": {
-      "description": "Link to another AMQP endpoint: router node, client or other AMQP process.",
-      "operations": ["READ"],
-      "include": ["common"],
-      "attributes": {
-	"linkType": {"type": ["endpoint", "waypoint", "inter-router", "inter-area"]},
-	"linkDir": {"type": ["in", "out"]},
-	"owningAddr": {"type": "String"},
-	"eventFifoDepth": {"type": "Integer"},
-	"msgFifoDepth": {"type": "Integer"}
-      }
-    },
-
-    "router.address": {
-      "description": "AMQP address managed by the router",
-      "operations": ["READ"],
-      "include": ["common"],
-      "attributes": {
-	"inProcess": {"type": "Boolean"},
-	"subscriberCount": {"type": "Integer"},
-	"remoteCount": {"type": "Integer"},
-	"deliveriesIngress": {"type": "Integer"},
-	"deliveriesEgress": {"type": "Integer"},
-	"deliveriesTransit": {"type": "Integer"},
-	"deliveriesToContainer": {"type": "Integer"},
-	"deliveriesFromContainer": {"type": "Integer"}
-      }
-    },
-
-    "router.node": {
-      "description": "AMQP node managed by the router",
-      "operations": ["READ"],
-      "include": ["common"],
-      "attributes": {
-	"addr": {"type": "String"},
-	"nextHop": {"type": "Integer"},
-	"routerLink": {"type": "Integer"},
-	"validOrigins": {"type": "List"}
-      }
-    },
-
-    "connection": {
-      "description": "Connections to the router's container",
-      "operations": ["READ"],
-      "include": ["common"],
-      "attributes": {
-	"container": {"type": "String"} ,
-	"state": {"type": [
-	  "connecting",
-	  "opening",
-	  "operational",
-	  "failed",
-	  "user"
-	]},
-	"host": {"type": "String"},
-	"dir": {"type": ["in", "out"]},
-	"role": {"type": "String"},
-	"sasl": {"type": "String"}
-      }
-    },
-
-    "allocator": {
-      "description": "Memory allocation pool.",
-      "operations": ["READ"],
-      "include": ["common"],
-      "attributes": {
-	"typeSize": {"type": "Integer"},
-	"transferBatchSize": {"type": "Integer"},
-	"localFreeListMax": {"type": "Integer"},
-	"globalFreeListMax": {"type": "Integer"},
-	"totalAllocFromHeap": {"type": "Integer"},
-	"totalFreeToHeap": {"type": "Integer"},
-	"heldByThreads": {"type": "Integer"},
-	"batchesRebalancedToThreads": {"type": "Integer"},
-	"batchesRebalancedToGlobal": {"type": "Integer"}
-       }
     }
-  }
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org