Interface AlertRule
public interface AlertRule
Represents an alert rule suitable for residing in a TIBCO Live Datamart server.
Properties managed by the server include, but are not limited to, the id, enablement
and validation status.
- Since:
- 2.0
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enum
Gets the type of alert, currently 2 types are supported: Cron Alert and Query Alert -
Method Summary
Modifier and TypeMethodDescriptionThis gets the live list of actions, so you could remove or rearrange these, and the changes will be saved if you save the Alert.Gets the value of the alertGroup property.Gets the value of the alertQueryConfig property.Gets the value of alertType property.Gets the value of the created property.Gets the value of the cronString property.Gets the value of the description property.getGUID()
Gets the value of the GUID propertyGets the value of the lastUpdated property.Gets the value of the messageTemplate property.getName()
Gets the value of the name property.getOwner()
Gets the value of the owner property.Gets the value of the persistedVersion property.Gets the value of the quiescence property.Gets the value of the severity property.Gets the value of the statusMessage property.boolean
Gets the value of the enabled property.boolean
isValid()
Gets the value of the status property.Creates a new ExecuteJavaAction and adds it to the end of the list of ActionsCreates a new ExecuteOSCommandAction and adds it to the end of the list of ActionsCreates a new InvokeHTTPAction and adds it to the end of the list of ActionsCreates a new IssueDeleteQueryAction and adds it to the end of the list of ActionsCreates a new LVPublishAlertAction and adds it to the end of the list of ActionsCreates a new PublishAlertAction and adds it to the end of the list of ActionsCreates a new SendEmailAction and adds it to the end of the list of ActionsCreates a new SendTupleAction and adds it to the end of the list of Actionsvoid
setAlertGroup
(String value) Sets the value of the alertGroup property.void
setAlertQueryConfig
(QueryConfig queryConfig) Sets the value of the alertQueryConfig property.void
setAlertType
(AlertRule.Type alertType) Sets the value of alertTypeproperty.void
setCronString
(String value) Sets the value of the cronString property which is a cron expression.void
setDescription
(String value) Sets the value of the description property.void
setEnabled
(boolean value) Sets the value of the enabled property.void
setIsValid
(boolean isValid) Sets the value of the status property.void
setMessageTemplate
(String value) Sets the value of the messageTemplate property.void
Sets the value of the name property.void
Sets the value of the owner property.void
setPersistedVersion
(Integer value) Sets the value of the persistedVersion property.void
setQuiescence
(int value) Sets the value of the quiescence property.void
setSeverity
(int value) Sets the value of the severity property.void
setStatusMessage
(String value) Sets the value of the statusMessage property.
-
Method Details
-
getStatusMessage
-
setStatusMessage
-
getCronString
-
setCronString
Sets the value of the cronString property which is a cron expression. Also changes the alert type from default to AlertType=CRON alert. A cron expression is a string consisting of six or seven subexpressions (fields) that describe individual details of the schedule. These fields, separated by white space, can contain any of the allowed values with various combinations of the allowed characters for that field.Expressions Allowed Fields and Values 1) Seconds: 0-59 or Allowed special characters(, - * /) 2) Minutes: 0-59 or Allowed special characters(, - * /) 3) Hours: 0-23 or Allowed special characters(, - * /) 4) Day of month: 1-31 or Allowed special characters(, - * ? / L W C) 5) Month: 0-11 or JAN-DEC or Allowed special characters(, - * /) 6) Day of week: 1-7 or SUN-SAT or Allowed special characters(, - * ? / L C #) 7) Year: empty or 1970-2099 or Allowed special characters(, - * /) e.g: 0 15 10 * * ? 2005 Fire the alert at 10:15 AM every day during the year 2005
- Parameters:
value
- allowed object isString
-
setAlertType
Sets the value of alertTypeproperty.- Parameters:
alertType
- theAlertRule.Type
for thisAlertRule
-
getAlertType
AlertRule.Type getAlertType()Gets the value of alertType property.- Returns:
- the
AlertRule.Type
for thisAlertRule
.
-
getAlertQueryConfig
QueryConfig getAlertQueryConfig()Gets the value of the alertQueryConfig property.- Returns:
- possible object is
Query
-
setAlertQueryConfig
Sets the value of the alertQueryConfig property.- Parameters:
queryConfig
- allowed object isQueryConfig
-
getDescription
-
setDescription
-
getMessageTemplate
-
setMessageTemplate
-
getName
-
setName
-
getSeverity
-
setSeverity
void setSeverity(int value) Sets the value of the severity property.- Parameters:
value
- allowed object isInteger
-
getQuiescence
-
setQuiescence
void setQuiescence(int value) Sets the value of the quiescence property.- Parameters:
value
- the value to set for the quiescence property.
-
isEnabled
-
setEnabled
void setEnabled(boolean value) Sets the value of the enabled property.- Parameters:
value
- allowed object isBoolean
-
getOwner
-
setOwner
-
getCreated
-
getLastUpdated
-
getGUID
-
isValid
boolean isValid()Gets the value of the status property.- Returns:
- true if this alert is valid
-
setIsValid
void setIsValid(boolean isValid) Sets the value of the status property.- Parameters:
isValid
- allowed object isStatusType
-
getPersistedVersion
-
setPersistedVersion
-
getAlertGroup
-
setAlertGroup
-
getActions
List<AlertRuleAction> getActions()This gets the live list of actions, so you could remove or rearrange these, and the changes will be saved if you save the Alert. Use any of the factory methods below to create one of the action types, and that will also add it to the list.- Returns:
- the list of Actions
-
newExecuteJavaAction
ExecuteJavaAction newExecuteJavaAction()Creates a new ExecuteJavaAction and adds it to the end of the list of Actions- Returns:
- the newly created ExecuteJavaAction
-
newExecuteOSCommandAction
ExecuteOSCommandAction newExecuteOSCommandAction()Creates a new ExecuteOSCommandAction and adds it to the end of the list of Actions- Returns:
- the newly created ExecuteOSCommandAction
-
newIssueDeleteQueryAction
IssueDeleteQueryAction newIssueDeleteQueryAction()Creates a new IssueDeleteQueryAction and adds it to the end of the list of Actions- Returns:
- the newly created IssueDeleteQueryAction
-
newPublishAlertAction
PublishAlertAction newPublishAlertAction()Creates a new PublishAlertAction and adds it to the end of the list of Actions- Returns:
- the newly created PublishAlertAction
-
newSendEmailAction
SendEmailAction newSendEmailAction()Creates a new SendEmailAction and adds it to the end of the list of Actions- Returns:
- the newly created SendEmailAction
-
newInvokeHTTPAction
InvokeHTTPAction newInvokeHTTPAction()Creates a new InvokeHTTPAction and adds it to the end of the list of Actions- Returns:
- the newly created InvokeHTTPAction
-
newSendTupleAction
SendTupleAction newSendTupleAction()Creates a new SendTupleAction and adds it to the end of the list of Actions- Returns:
- the newly created SendTupleAction
-
newLVPublishAlertAction
LVPublishAlertAction newLVPublishAlertAction()Creates a new LVPublishAlertAction and adds it to the end of the list of Actions- Returns:
- the newly created LVPublishAlertAction
-