messageFlow element

Type: imbMessageFlowResponseObject
Namespace: http://www.ibm.com/iib/apiv1/responseObject
XML Schema: ns1.xsd

Describes a message flow deployed on a broker

Example XML

<?xml version="1.0" encoding="UTF-8"?> <messageFlow xmlns="http://www.ibm.com/iib/apiv1/responseObject" type="..." isRunning="..." runMode="..." startMode="..." flowDesignUri="..." activityLogUri="..." flowMonitoringActive="..." isInTestRecordMode="..." uri="..." propertiesUri="..." UUID="..." name="..."> <archiveStatistics enabled="..." origin="..." threadLevel="..." nodeLevel="..."> <outputFormat> <xml>...</xml> <json>...</json> <userTrace>...</userTrace> <smf>...</smf> </outputFormat> </archiveStatistics> <snapshotStatistics enabled="..." origin="..." threadLevel="..." nodeLevel="..."> <outputFormat> <xml>...</xml> <json>...</json> <userTrace>...</userTrace> <smf>...</smf> </outputFormat> </snapshotStatistics> <policies> <policy type="..." uri="..." policyType="..." name="..."> <documentURI>...</documentURI> <data> <data name="..." value="..." owner="..." type="..." /> <data name="..." value="..." owner="..." type="..."> <!--...--> </data> <!--...more "data" elements...--> </data> </policy> <policy type="..." uri="..." policyType="..." name="..."> <!--...--> </policy> <!--...more "policy" elements...--> </policies> </messageFlow>

Example JSON

{ "type" : "...", "isRunning" : false, "runMode" : "...", "startMode" : "...", "flowDesignUri" : { "value" : "..." }, "activityLogUri" : { "value" : "..." }, "flowMonitoringActive" : false, "isInTestRecordMode" : false, "archiveStatistics" : { "enabled" : false, "origin" : "...", "threadLevel" : "...", "nodeLevel" : "...", "outputFormat" : { "xml" : false, "json" : false, "userTrace" : false, "smf" : false } }, "snapshotStatistics" : { "enabled" : false, "origin" : "...", "threadLevel" : "...", "nodeLevel" : "...", "outputFormat" : { "xml" : false, "json" : false, "userTrace" : false, "smf" : false } }, "policies" : [ { "type" : "...", "uri" : { "value" : "..." }, "policyType" : "...", "name" : "...", "documentURI" : "...", "data" : [ { "name" : "...", "value" : "...", "owner" : "...", "type" : "..." }, ... ] }, ... ], "uri" : { "value" : "..." }, "propertiesUri" : { "value" : "..." }, "UUID" : "...", "name" : "..." }