processorsEntity element
| Type: | processorsEntity |
| 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 list of ProcessorDTOs.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<processorsEntity>
<revision>
<clientId>...</clientId>
<version>...</version>
</revision>
<processors>
<id>...</id>
<parentGroupId>...</parentGroupId>
<uri>...</uri>
<position>
<x>...</x>
<y>...</y>
</position>
<name>...</name>
<type>...</type>
<state>...</state>
<style>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'string' type)-->
</value>
</entry>
<!--...more entries...-->
</style>
<supportsParallelProcessing>...</supportsParallelProcessing>
<supportsEventDriven>...</supportsEventDriven>
<relationships>
<name>...</name>
<description>...</description>
</relationships>
<relationships>
<!--...-->
</relationships>
<!--...more "relationships" elements...-->
<config>
<schedulingPeriod>...</schedulingPeriod>
<schedulingStrategy>...</schedulingStrategy>
<penaltyDuration>...</penaltyDuration>
<yieldDuration>...</yieldDuration>
<bulletinLevel>...</bulletinLevel>
<concurrentlySchedulableTaskCount>...</concurrentlySchedulableTaskCount>
<comments>...</comments>
<properties>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'string' type)-->
</value>
</entry>
<!--...more entries...-->
</properties>
<descriptors>
<entry>
<key>...</key>
<value>
<allowableValues>
<displayName>...</displayName>
<value>...</value>
<description>...</description>
</allowableValues>
<allowableValues>
<!--...-->
</allowableValues>
<!--...more "allowableValues" elements...-->
<defaultValue>...</defaultValue>
<description>...</description>
<name>...</name>
<displayName>...</displayName>
<required>...</required>
<sensitive>...</sensitive>
<dynamic>...</dynamic>
<supportsEl>...</supportsEl>
</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'propertyDescriptor' type)-->
</value>
</entry>
<!--...more entries...-->
</descriptors>
<annotationData>...</annotationData>
<customUiUrl>...</customUiUrl>
<autoTerminatedRelationships>...</autoTerminatedRelationships>
<autoTerminatedRelationships>...</autoTerminatedRelationships>
<!--...more "autoTerminatedRelationships" elements...-->
<defaultConcurrentTasks>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'string' type)-->
</value>
</entry>
<!--...more entries...-->
</defaultConcurrentTasks>
<runDurationMillis>...</runDurationMillis>
<defaultSchedulingPeriod>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'string' type)-->
</value>
</entry>
<!--...more entries...-->
</defaultSchedulingPeriod>
</config>
<validationErrors>...</validationErrors>
<validationErrors>...</validationErrors>
<!--...more "validationErrors" elements...-->
<description>...</description>
</processors>
<processors>
<!--...-->
</processors>
<!--...more "processors" elements...-->
</processorsEntity>
Example JSON
{
"processors" : [ {
"name" : "...",
"type" : "...",
"state" : "...",
"style" : {
"..." : "...",
"---" : ...
},
"supportsParallelProcessing" : false,
"supportsEventDriven" : false,
"relationships" : [ {
"name" : "...",
"description" : "..."
}, ... ],
"config" : {
"schedulingPeriod" : "...",
"schedulingStrategy" : "...",
"penaltyDuration" : "...",
"yieldDuration" : "...",
"bulletinLevel" : "...",
"concurrentlySchedulableTaskCount" : ...,
"comments" : "...",
"properties" : {
"..." : "...",
"---" : ...
},
"descriptors" : {
"..." : {
"allowableValues" : [ {
"displayName" : "...",
"value" : "...",
"description" : "..."
}, ... ],
"defaultValue" : "...",
"description" : "...",
"name" : "...",
"displayName" : "...",
"required" : false,
"sensitive" : false,
"dynamic" : false,
"supportsEl" : false
},
"---" : ...
},
"annotationData" : "...",
"customUiUrl" : "...",
"autoTerminatedRelationships" : [ "...", ... ],
"defaultConcurrentTasks" : {
"..." : "...",
"---" : ...
},
"runDurationMillis" : ...,
"defaultSchedulingPeriod" : {
"..." : "...",
"---" : ...
}
},
"validationErrors" : [ "...", ... ],
"description" : "...",
"id" : "...",
"parentGroupId" : "...",
"uri" : "...",
"position" : {
"x" : ...,
"y" : ...
}
}, ... ],
"revision" : {
"clientId" : "...",
"version" : ...
}
}