Interface ActionEnableObject
-
- All Superinterfaces:
ActionSubjectObject
- All Known Subinterfaces:
AlertSourceAction
,JobDefinitionAction
,JobDefinitionTypeAction
,Trigger
public interface ActionEnableObject extends ActionSubjectObject
An action object that can be enabled or disabled.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getErrorNameEN()
Get the error name of this object in English.boolean
isEnabled()
Is this object enabled?void
setEnabled(boolean e)
-
Methods inherited from interface com.redwood.scheduler.api.model.interfaces.ActionSubjectObject
getActionSubject, getActionSubjectUniqueId
-
-
-
-
Method Detail
-
isEnabled
boolean isEnabled()
Is this object enabled?- Returns:
- true if enabled, false otherwise.
-
setEnabled
void setEnabled(boolean e)
-
getErrorNameEN
String getErrorNameEN()
Get the error name of this object in English.- Returns:
- the name.
-
-