Package | Description |
---|---|
net.sourceforge.stripes.validation.expression |
This package provides several classes that give Stripes the ability to execute
EL expressions for validation using various implementations.
|
Modifier and Type | Class and Description |
---|---|
class |
CommonsElExpressionExecutor
An implementation of
ExpressionExecutor that relies on the Apache Commons
EL implementation being available in the classpath. |
class |
ExpressionExecutorSupport
A base class that provides the general plumbing for running expression validation
using the old JSP 2.0 style ExpressionEvaluator.
|
class |
Jsp20ExpressionExecutor
An implementation of
ExpressionExecutor that uses the container's built in
JSP2.0 EL implementation. |
class |
Jsp21ExpressionExecutor
An implementation of
ExpressionExecutor that uses the new EL API available in Java
EE 5 in the javax.el package. |
Modifier and Type | Method and Description |
---|---|
static ExpressionExecutor |
ExpressionValidator.getExecutor()
Gets the executor that will be used to run expression evaluation.
|
Modifier and Type | Method and Description |
---|---|
static void |
ExpressionValidator.setExecutor(ExpressionExecutor executor)
Allows anyone who is interested to substitute a different ExpressionExecutor instance
instead of the one picked by the ExpressionValidator.
|
? Copyright 2005-2006, Stripes Development Team.