Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
*
* Portions Copyright Apache Software Foundation.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can obtain
* a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
* or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
* Sun designates this particular file as subject to the "Classpath" exception
* as provided by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the License
* Header, with the fields enclosed by brackets [] replaced by your own
* identifying information: "Portions Copyrighted [year]
* [name of copyright owner]"
*
* Contributor(s):
*
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package javax.servlet.jsp.el;
import java.beans.FeatureDescriptor;
import java.util.Iterator;
import java.util.ArrayList;
import java.util.Enumeration;
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.JspContext;
import javax.el.ELContext;
import javax.el.ELResolver;
import javax.el.ELException;
/**
* Defines variable resolution behavior for scoped attributes.
*
*
This resolver handles all variable resolutions (where base
* is null. It searches PageContext.findAttribute()
* for a matching attribute. If not found, it will return null,
* or in the case of setValue it will create a new attribute
* in the page scope with the given name.
*
* @see javax.el.ELResolver
* @since JSP 2.1
*/
public class ScopedAttributeELResolver extends ELResolver {
/**
* If the base object is null, searches the page,
* request, session and application scopes for an attribute with
* the given name and returns it, or null if no
* attribute exists with the current name.
*
*
The propertyResolved property of the
* ELContext object must be set to true by
* this resolver before returning if base is null. If
* this property is not true after this method is called,
* the caller should ignore the return value.
*
* @param context The context of this evaluation.
* @param base Only null is handled by this resolver.
* Other values will result in an immediate return.
* @param property The name of the scoped attribute to resolve.
* @return If the propertyResolved property of
* ELContext was set to true, then
* the scoped attribute; otherwise undefined.
* @throws NullPointerException if context is null
* @throws ELException if an exception was thrown while performing
* the property or variable resolution. The thrown exception
* must be included as the cause property of this exception, if
* available.
*/
public Object getValue(ELContext context,
Object base,
Object property) {
if (context == null) {
throw new NullPointerException();
}
if (base == null) {
context.setPropertyResolved(true);
if (property instanceof String) {
String attribute = (String) property;
PageContext ctxt = (PageContext)
context.getContext(JspContext.class);
return ctxt.findAttribute(attribute);
}
}
return null;
}
/**
* If the base object is null, returns
* Object.class to indicate that any type is valid to
* set for a scoped attribute.
*
*
The propertyResolved property of the
* ELContext object must be set to true by
* this resolver before returning if base is null. If
* this property is not true after this method is called,
* the caller should ignore the return value.
*
* @param context The context of this evaluation.
* @param base Only null is handled by this resolver.
* Other values will result in an immediate return.
* @param property The name of the scoped attribute to resolve.
* @return If the propertyResolved property of
* ELContext was set to true, then
* Object.class; otherwise undefined.
* @throws NullPointerException if context is null
* @throws ELException if an exception was thrown while performing
* the property or variable resolution. The thrown exception
* must be included as the cause property of this exception, if
* available.
*/
public Class