Annotation Interface Action
This annotation is designed to describe the groovy actions which are created from groovy file, the informations added with this
annotation will be processed to create an action type entry in elastic search.
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionAction Executor to allow to define which action will be called by the action dispatcher The groovy action have to be prefixed by groovy: -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
Parameters specific to the action The value of the parameters can be retrieved in the action like the following: action.getParameterValues().get(parameterName);String[]
List of tags that help to classify the action
-
Element Details
-
-
name
String name- Returns:
- name of the action
- Default:
- ""
-
description
String description- Returns:
- description of the action
- Default:
- ""
-
parameters
Parameter[] parametersParameters specific to the action The value of the parameters can be retrieved in the action like the following: action.getParameterValues().get(parameterName);- Returns:
- list of parameters
- Default:
- {}
-
systemTags
String[] systemTagsList of tags that help to classify the action- Returns:
- list of system tags
- Default:
- {}
-