{
return symbol;
}
// next check the scope maps from request up to application
final IDTExternalContext externalContext =
context.getDTExternalContext(externalContextKey);
if (externalContext == null)
{
// TODO: try to find bean here?
return null;
}
symbol = externalContext.getRequestMap().get(name);
// check request scope
if (symbol == null)
{
symbol = externalContext.getSessionMap().get(name);
// then check session scope
if (symbol == null)
{
symbol = externalContext.getApplicationMap().get(name);
// if the symbol is not found at any scope, then look for a
// a bean.
if (symbol == null)
{