Methods Summary |
---|
java.lang.Object | getAction()Retrieves the Action associated with the Rule
return actionMBean;
|
java.lang.String | getDescription()Retrieves the description of the configured rule
return description;
|
com.sun.enterprise.admin.selfmanagement.event.Event | getEvent()Retrieves the Event associated with the Rule
return event;
|
java.lang.String | getName()Retrieves name of the configured rule
return name;
|
int | getState()Retrieves the current state of the configured Rule
return state;
|
boolean | isEnabled()Provides the enabled status of the rule
return isEnabled;
|
void | setAction(java.lang.Object actionInstance)Associates the Action with the configured Rule
actionMBean = actionInstance;
|
void | setEnabled(boolean status)Set the enabled status
isEnabled = status;
|
void | setEvent(com.sun.enterprise.admin.selfmanagement.event.Event ruleEvent)Associates the event with the Rule
event = ruleEvent;
|
void | setName(java.lang.String ruleName)Sets the name of the configured Rule
name = ruleName;
|
void | setState(int ruleState)Sets the current state of the configured Rule
state = ruleState;
|