Interface Trigger
-
- All Known Implementing Classes:
TriggerImpl
public interface Trigger
Interface describing a representation of the <trigger> element of a Process Model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addParameter(Parameter parameter)
Add a Parameter to the collectionString
getHandler()
Get the handler name of the Trigger.String
getName()
Get the name of the TriggerParameter
getParameter(String strName)
Get the parameter specified by namevoid
setHandler(String handlerName)
Set the handler name of the Trigger.void
setName(String name)
Set the name of the Trigger
-
-
-
Method Detail
-
getName
String getName()
Get the name of the Trigger- Returns:
- parameter's name
-
setName
void setName(String name)
Set the name of the Trigger- Parameters:
name
- parameter's name
-
getHandler
String getHandler()
Get the handler name of the Trigger.- Returns:
- the handler name filled into
Named
annotations ofExternalActionImpl
implementations.
-
setHandler
void setHandler(String handlerName)
Set the handler name of the Trigger.- Parameters:
handlerName
- the handler name.
-
getParameter
Parameter getParameter(String strName)
Get the parameter specified by name- Parameters:
strName
- the parameter name- Returns:
- the parameters
-
addParameter
void addParameter(Parameter parameter)
Add a Parameter to the collection
-
-