Interface TagActorDescriptor
-
- All Known Implementing Classes:
BasicTagActorDescriptor
public interface TagActorDescriptor
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
TagActorDescriptor.ScriptEventDescription
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActorClassification
getClassification()
TagActorFactory
getFactory()
java.lang.String
getId()
java.util.List<TagActorDescriptor.ScriptEventDescription>
getScriptEventDefinitions()
If the actor exposes tag event scripts that can be defined, this function will return them, otherwise it will return null or an empty list.java.util.Optional<ConfigurationPropertyModel>
getTagGroupPropertyModel()
java.util.Optional<ConfigurationPropertyModel>
getTagPropertyModel()
-
-
-
Method Detail
-
getId
java.lang.String getId()
-
getClassification
ActorClassification getClassification()
-
getFactory
TagActorFactory getFactory()
-
getScriptEventDefinitions
java.util.List<TagActorDescriptor.ScriptEventDescription> getScriptEventDefinitions()
If the actor exposes tag event scripts that can be defined, this function will return them, otherwise it will return null or an empty list.
-
getTagPropertyModel
java.util.Optional<ConfigurationPropertyModel> getTagPropertyModel()
-
getTagGroupPropertyModel
java.util.Optional<ConfigurationPropertyModel> getTagGroupPropertyModel()
-
-