connectionEntity element

Type: connectionEntity
Namespace: (default namespace)
XML Schema: ns0.xsd

A serialized representation of this class can be placed in the entity body of a response to the API. This particular entity holds a reference to a ConnectionDTO.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <connectionEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <connection> <id>...</id> <parentGroupId>...</parentGroupId> <uri>...</uri> <position> <x>...</x> <y>...</y> </position> <source> <id>...</id> <type>...</type> <groupId>...</groupId> <name>...</name> <exists>...</exists> <transmitting>...</transmitting> <comments>...</comments> </source> <destination> <id>...</id> <type>...</type> <groupId>...</groupId> <name>...</name> <exists>...</exists> <transmitting>...</transmitting> <comments>...</comments> </destination> <name>...</name> <bends> <x>...</x> <y>...</y> </bends> <bends> <!--...--> </bends> <!--...more "bends" elements...--> <labelIndex>...</labelIndex> <zIndex>...</zIndex> <selectedRelationships>...</selectedRelationships> <selectedRelationships>...</selectedRelationships> <!--...more "selectedRelationships" elements...--> <availableRelationships>...</availableRelationships> <availableRelationships>...</availableRelationships> <!--...more "availableRelationships" elements...--> <backPressureObjectThreshold>...</backPressureObjectThreshold> <backPressureDataSizeThreshold>...</backPressureDataSizeThreshold> <flowFileExpiration>...</flowFileExpiration> <prioritizers>...</prioritizers> <prioritizers>...</prioritizers> <!--...more "prioritizers" elements...--> </connection> </connectionEntity>

Example JSON

{ "connection" : { "source" : { "id" : "...", "type" : "...", "groupId" : "...", "name" : "...", "exists" : false, "transmitting" : false, "comments" : "..." }, "destination" : { "id" : "...", "type" : "...", "groupId" : "...", "name" : "...", "exists" : false, "transmitting" : false, "comments" : "..." }, "name" : "...", "bends" : [ { "x" : ..., "y" : ... }, ... ], "labelIndex" : ..., "zIndex" : ..., "selectedRelationships" : [ "...", ... ], "availableRelationships" : [ "...", ... ], "backPressureObjectThreshold" : ..., "backPressureDataSizeThreshold" : "...", "flowFileExpiration" : "...", "prioritizers" : [ "...", ... ], "id" : "...", "parentGroupId" : "...", "uri" : "...", "position" : { "x" : ..., "y" : ... } }, "revision" : { "clientId" : "...", "version" : ... } }