Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 2 KB

ControllerServiceDTO.md

File metadata and controls

33 lines (26 loc) · 2 KB

ControllerServiceDTO

Properties

Name Type Description Notes
id String The id of the component. [optional]
parentGroupId String The id of parent process group of this component if applicable. [optional]
position PositionDTO The position of this component in the UI if applicable. [optional]
name String The name of the controller service. [optional]
type String The type of the controller service. [optional]
comments String The comments for the controller service. [optional]
state StateEnum The state of the controller service. [optional]
persistsState Boolean Whether the controller service persists state. [optional]
properties Map<String, String> The properties of the controller service. [optional]
descriptors Map<String, PropertyDescriptorDTO> The descriptors for the controller service properties. [optional]
customUiUrl String The URL for the controller services custom configuration UI if applicable. [optional]
annotationData String The annontation for the controller service. This is how the custom UI relays configuration to the controller service. [optional]
referencingComponents List<ControllerServiceReferencingComponentEntity> All components referencing this controller service. [optional]
validationErrors List<String> The validation errors from the controller service. These validation errors represent the problems with the controller service that must be resolved before it can be enabled. [optional]

Enum: StateEnum

Name Value
ENABLED "ENABLED"
ENABLING "ENABLING"
DISABLED "DISABLED"
DISABLING "DISABLING"