policyType element
Type: | imbPolicyTypeContainerBean |
Namespace: | (default namespace) |
XML Schema: | ns0.xsd |
Description of policies available on the broker.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<policyType type="..." policyType="..." uri="..." hasChildren="..." internal="...">
<policy type="..." uri="..." policyType="..." name="...">
<documentURI>...</documentURI>
<data>
<data name="..." value="..." owner="..." />
<data name="..." value="..." owner="...">
<!--...-->
</data>
<!--...more "data" elements...-->
</data>
</policy>
<policy type="..." uri="..." policyType="..." name="...">
<!--...-->
</policy>
<!--...more "policy" elements...-->
</policyType>
Example JSON
{
"type" : "...",
"policyType" : "...",
"policy" : [ {
"type" : "...",
"uri" : {
"value" : "..."
},
"policyType" : "...",
"name" : "...",
"documentURI" : "...",
"data" : [ {
"name" : "...",
"value" : "...",
"owner" : "..."
}, ... ]
}, ... ],
"uri" : {
"value" : "..."
},
"hasChildren" : "...",
"internal" : "..."
}