SettableBean
, WLDFBean
WLDFActionBean
, WLDFHeapDumpActionBean
, WLDFImageNotificationBean
, WLDFJMSNotificationBean
, WLDFJMXNotificationBean
, WLDFLogActionBean
, WLDFRESTNotificationBean
, WLDFScaleDownActionBean
, WLDFScaleUpActionBean
, WLDFScalingActionBean
, WLDFScriptActionBean
, WLDFSMTPNotificationBean
, WLDFSNMPNotificationBean
, WLDFThreadDumpActionBean
public interface WLDFNotificationBean extends WLDFBean
Use this interface to define the base class for the different types of
actions sent by a policy when it evaluates to true
.
Modifier and Type | Method | Description |
---|---|---|
int |
getTimeout() |
The length of time, in seconds, that an action has to complete
execution.
|
boolean |
isEnabled() |
Specifies whether this action is enabled.
|
void |
setEnabled(boolean enabled) |
Sets the value of the Enabled attribute.
|
void |
setTimeout(int timeout) |
Sets the timeout period for the action.
|
boolean isEnabled()
Specifies whether this action is enabled.
true
if enabled,
false
if disabledvoid setEnabled(boolean enabled)
Sets the value of the Enabled attribute.
enabled
- the state to which the action is set, true
to enable,
false
to disableisEnabled()
int getTimeout()
The length of time, in seconds, that an action has to complete execution. By default, the timeout period is 0, which disables the action timeout.
void setTimeout(int timeout)
Sets the timeout period for the action.
timeout
- The timeout period in secondsgetTimeout()