controllerConfigurationEntity element

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

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

Example XML

<?xml version="1.0" encoding="UTF-8"?> <controllerConfigurationEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <config> <maxTimerDrivenThreadCount>...</maxTimerDrivenThreadCount> <maxEventDrivenThreadCount>...</maxEventDrivenThreadCount> <name>...</name> <comments>...</comments> <autoRefreshIntervalSeconds>...</autoRefreshIntervalSeconds> <timeOffset>...</timeOffset> <contentViewerUrl>...</contentViewerUrl> <uri>...</uri> </config> </controllerConfigurationEntity>

Example JSON

{ "config" : { "maxTimerDrivenThreadCount" : ..., "maxEventDrivenThreadCount" : ..., "name" : "...", "comments" : "...", "autoRefreshIntervalSeconds" : ..., "timeOffset" : ..., "contentViewerUrl" : "...", "uri" : "..." }, "revision" : { "clientId" : "...", "version" : ... } }