Package javax.faces.flow
Class Parameter
- java.lang.Object
-
- javax.faces.flow.Parameter
-
public abstract class Parameter extends java.lang.ObjectRepresents a parameter in any of several places where parameters are needed when processing flows.
- Since:
- 2.2
-
-
Constructor Summary
Constructors Constructor Description Parameter()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract java.lang.StringgetName()Return the name of the parameterabstract javax.el.ValueExpressiongetValue()Return aValueExpressionfor the value of the parameter.
-
-
-
Method Detail
-
getName
public abstract java.lang.String getName()
Return the name of the parameter
- Since:
- 2.2
-
getValue
public abstract javax.el.ValueExpression getValue()
Return a
ValueExpressionfor the value of the parameter. Depending on the context, this expression may only ever be evaluated in a "get" operation.- Since:
- 2.2
-
-