Skip navigation links
oracle.wcps.conductor.scenario.syntax
Interface IConditionalStatement
- All Superinterfaces:
- ICompoundStatement, IStatement
- All Known Subinterfaces:
- IWhileStatement
-
public interface IConditionalStatement
- extends ICompoundStatement
Statements that interact with conditional expressions.
Conditional expressions must evaluate to true or false.
Method Summary |
java.lang.String |
getExpression()
Returns the conditional expression. |
void |
setExpression(java.lang.String expression)
Sets the conditional expression. |
Methods inherited from interface oracle.wcps.conductor.scenario.syntax.ICompoundStatement |
addStatement, addStatement, afterUnmarshalJson, deleteStatement, getBodyStatements, getFirstErrorMessage, getStatement, getStatementByIndex, indexOfStatement, raiseError, setBodyStatements |
Methods inherited from interface oracle.wcps.conductor.scenario.syntax.IStatement |
getComments, getContainerScenario, getErrorLevel, getErrorMessage, getId, getLabel, getNodeName, getParentStatement, getScenarioStatementIndex, getStatementIndex, raiseError, setComments, setId, setLabel |
getExpression
java.lang.String getExpression()
- Returns the conditional expression.
setExpression
void setExpression(java.lang.String expression)
- Sets the conditional expression.
For example, the following expression determines if a variable named "aVariable" is null or empty:
${empty aVariable}
Skip navigation links
Copyright © 2009, 2014, Oracle and/or its affiliates. All rights reserved.