Package adams.flow.core
Interface HttpResponseVariableSupporter
-
- All Known Implementing Classes:
HttpPostFile,HttpRequest,HttpRequest
public interface HttpResponseVariableSupporterInterface for classes that support storing status code and/or body directly in variables.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VariableNamegetVariableBody()Returns the (optional) variable name for storing the body in.VariableNamegetVariableStatusCode()Returns the (optional) variable name for storing the status code in.voidsetVariableBody(VariableName value)Sets the (optional) variable name for storing the body in.voidsetVariableStatusCode(VariableName value)Sets the (optional) variable name for storing the status code in.StringvariableBodyTipText()Returns the tip text for this property.StringvariableStatusCodeTipText()Returns the tip text for this property.
-
-
-
Method Detail
-
setVariableStatusCode
void setVariableStatusCode(VariableName value)
Sets the (optional) variable name for storing the status code in.- Parameters:
value- the variable name
-
getVariableStatusCode
VariableName getVariableStatusCode()
Returns the (optional) variable name for storing the status code in.- Returns:
- the variable name
-
variableStatusCodeTipText
String variableStatusCodeTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setVariableBody
void setVariableBody(VariableName value)
Sets the (optional) variable name for storing the body in.- Parameters:
value- the variable name
-
getVariableBody
VariableName getVariableBody()
Returns the (optional) variable name for storing the body in.- Returns:
- the variable name
-
variableBodyTipText
String variableBodyTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-