*
* @return The application scope.
*/
public Map<String, Object> getApplicationScope() {
if ((applicationScope == null) && (pageContext != null)) {
applicationScope = new ScopeMap(new ScopeExtractor(pageContext,
PageContext.APPLICATION_SCOPE));
}
return (applicationScope);
}