Interface InvokeHTTPAction
-
- All Superinterfaces:
AlertRuleAction
public interface InvokeHTTPAction extends AlertRuleAction
Causes a rest request to be sent when this alert is triggered.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.streambase.liveview.client.alert.AlertRuleAction
AlertRuleAction.ActionType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBody()
Gets the value of the body property.Map<String,String>
getHeaders()
Gets the map of headers.String
getMethod()
Gets the value of the method property.Map<String,String>
getQueryParameters()
Gets the map of query parameters.String
getURL()
Gets the value of the URL property.void
setBody(String value)
Sets the value of the body property.void
setHeaders(Map<String,String> value)
Sets the map of headers.void
setMethod(String value)
Sets the value of the method property.void
setQueryParameters(Map<String,String> value)
Sets the map of query parameters.void
setURL(String value)
Sets the value of the URL property.-
Methods inherited from interface com.streambase.liveview.client.alert.AlertRuleAction
getActionType, getDescription, isEnabled, setDescription, setEnabled
-
-
-
-
Method Detail
-
getMethod
String getMethod()
Gets the value of the method property.- Returns:
- possible object is
String
-
setMethod
void setMethod(String value)
Sets the value of the method property.- Parameters:
value
- allowed object isString
-
setURL
void setURL(String value)
Sets the value of the URL property.- Parameters:
value
- allowed object isString
-
setBody
void setBody(String value)
Sets the value of the body property.- Parameters:
value
- allowed object isString
-
getHeaders
Map<String,String> getHeaders()
Gets the map of headers.- Returns:
- possible object is
Map
-
setHeaders
void setHeaders(Map<String,String> value)
Sets the map of headers.- Parameters:
value
- allowed object isMap
-
getQueryParameters
Map<String,String> getQueryParameters()
Gets the map of query parameters.- Returns:
- possible object is
Map
-
-