All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.faces.application.ApplicationWrapper Maven / Gradle / Ivy

Go to download

This is the master POM file for Oracle's Implementation of the JSF 2.2 Specification.

There is a newer version: 2.2.20
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
 *
 * 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_1_1.html
 * or packager/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 packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [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.faces.application;

import java.util.Collection;
import java.util.Iterator;
import java.util.Locale;
import java.util.Map;
import java.util.ResourceBundle;

import javax.el.ELContextListener;
import javax.el.ELException;
import javax.el.ELResolver;
import javax.el.ExpressionFactory;
import javax.el.ValueExpression;
import javax.faces.FacesException;
import javax.faces.FacesWrapper;
import javax.faces.component.UIComponent;
import javax.faces.component.behavior.Behavior;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import javax.faces.el.MethodBinding;
import javax.faces.el.PropertyResolver;
import javax.faces.el.ReferenceSyntaxException;
import javax.faces.el.ValueBinding;
import javax.faces.el.VariableResolver;
import javax.faces.event.ActionListener;
import javax.faces.event.SystemEvent;
import javax.faces.event.SystemEventListener;
import javax.faces.flow.FlowHandler;
import javax.faces.validator.Validator;


/**
 * 

Provides a simple implementation of * {@link Application} that can be subclassed by developers wishing * to provide specialized behavior to an existing {@link * Application} instance. The default implementation of all methods * is to call through to the wrapped {@link Application}.

* *
* *

Usage: extend this class and override {@link #getWrapped} to * return the instance we are wrapping.

* *
* * @since 2.0 */ public abstract class ApplicationWrapper extends Application implements FacesWrapper { @Override public abstract Application getWrapped(); /** *

The default behavior of this method * is to call {@link Application#getActionListener} on the * wrapped {@link Application} object.

*/ @Override public ActionListener getActionListener() { return getWrapped().getActionListener(); } /** *

The default behavior of this method * is to call {@link Application#setActionListener(javax.faces.event.ActionListener)} * on the wrapped {@link Application} object.

*/ @Override public void setActionListener(ActionListener listener) { getWrapped().setActionListener(listener); } /** *

The default behavior of this method * is to call {@link Application#getDefaultLocale} on the * wrapped {@link Application} object.

*/ @Override public Locale getDefaultLocale() { return getWrapped().getDefaultLocale(); } /** *

The default behavior of this method * is to call {@link Application#setDefaultLocale(java.util.Locale)} on the * wrapped {@link Application} object.

*/ @Override public void setDefaultLocale(Locale locale) { getWrapped().setDefaultLocale(locale); } /** *

The default behavior of this method * is to call {@link Application#getDefaultRenderKitId} on the * wrapped {@link Application} object.

*/ @Override public String getDefaultRenderKitId() { return getWrapped().getDefaultRenderKitId(); } /** *

The default behavior of this method * is to call {@link Application#addDefaultValidatorId(String)} on the * wrapped {@link Application} object.

*/ @Override public void addDefaultValidatorId(String validatorId) { getWrapped().addDefaultValidatorId(validatorId); } /** *

The default behavior of this method * is to call {@link Application#getDefaultValidatorInfo} on the * wrapped {@link Application} object.

*/ @Override public Map getDefaultValidatorInfo() { return getWrapped().getDefaultValidatorInfo(); } /** *

The default behavior of this method * is to call {@link Application#setDefaultRenderKitId(String)} on the * wrapped {@link Application} object.

*/ @Override public void setDefaultRenderKitId(String renderKitId) { getWrapped().setDefaultRenderKitId(renderKitId); } /** *

The default behavior of this method * is to call {@link Application#getMessageBundle} on the * wrapped {@link Application} object.

*/ @Override public String getMessageBundle() { return getWrapped().getMessageBundle(); } /** *

The default behavior of this method * is to call {@link Application#setMessageBundle(String)} on the * wrapped {@link Application} object.

*/ @Override public void setMessageBundle(String bundle) { getWrapped().setMessageBundle(bundle); } /** *

The default behavior of this method * is to call {@link Application#getNavigationHandler} on the * wrapped {@link Application} object.

*/ @Override public NavigationHandler getNavigationHandler() { return getWrapped().getNavigationHandler(); } /** *

The default behavior of this method * is to call {@link Application#setNavigationHandler(NavigationHandler)} on the * wrapped {@link Application} object.

*/ @Override public void setNavigationHandler(NavigationHandler handler) { getWrapped().setNavigationHandler(handler); } /** *

The default behavior of this method * is to call {@link Application#getPropertyResolver} on the * wrapped {@link Application} object.

* * @deprecated See superclass for alternative. */ @Override @Deprecated public PropertyResolver getPropertyResolver() { return getWrapped().getPropertyResolver(); } /** *

The default behavior of this method * is to call {@link Application#setPropertyResolver(javax.faces.el.PropertyResolver)} on the * wrapped {@link Application} object.

* * @deprecated See superclass for alternative. */ @Override @Deprecated public void setPropertyResolver(PropertyResolver resolver) { getWrapped().setPropertyResolver(resolver); } /** *

The default behavior of this method * is to call {@link Application#getVariableResolver} on the * wrapped {@link Application} object.

* * @deprecated See superclass for alternative. */ @Override @Deprecated public VariableResolver getVariableResolver() { return getWrapped().getVariableResolver(); } /** *

The default behavior of this method * is to call {@link Application#setVariableResolver(javax.faces.el.VariableResolver)} on the * wrapped {@link Application} object.

* * @deprecated See superclass for alternative. */ @Override @Deprecated public void setVariableResolver(VariableResolver resolver) { getWrapped().setVariableResolver(resolver); } /** *

The default behavior of this method * is to call {@link Application#getViewHandler} on the * wrapped {@link Application} object.

*/ @Override public ViewHandler getViewHandler() { return getWrapped().getViewHandler(); } /** *

The default behavior of this method * is to call {@link Application#setViewHandler(ViewHandler)} on the * wrapped {@link Application} object.

* * @throws IllegalStateException if this method is called after * at least one request has been processed by the * Lifecycle instance for this application. * @throws NullPointerException if manager * is null */ @Override public void setViewHandler(ViewHandler handler) { getWrapped().setViewHandler(handler); } /** *

The default behavior of this method * is to call {@link Application#getStateManager} on the * wrapped {@link Application} object.

*/ @Override public StateManager getStateManager() { return getWrapped().getStateManager(); } /** *

The default behavior of this method * is to call {@link Application#setStateManager(StateManager)} on the * wrapped {@link Application} object.

* * @throws IllegalStateException if this method is called after * at least one request has been processed by the * Lifecycle instance for this application. * @throws NullPointerException if manager * is null */ @Override public void setStateManager(StateManager manager) { getWrapped().setStateManager(manager); } /** *

The default behavior of this method * is to call {@link Application#addComponent(String, String)} on the * wrapped {@link Application} object.

*/ @Override public void addComponent(String componentType, String componentClass) { getWrapped().addComponent(componentType, componentClass); } /** *

The default behavior of this method * is to call {@link Application#createComponent(String)} on the * wrapped {@link Application} object.

*/ @Override public UIComponent createComponent(String componentType) throws FacesException { return getWrapped().createComponent(componentType); } /** *

The default behavior of this method * is to call {@link Application#createComponent(javax.faces.el.ValueBinding, javax.faces.context.FacesContext, String)} * on the wrapped {@link Application} object.

* * @deprecated See superclass for alternative. */ @Override @Deprecated public UIComponent createComponent(ValueBinding componentBinding, FacesContext context, String componentType) throws FacesException { return getWrapped().createComponent(componentBinding, context, componentType); } /** *

The default behavior of this method * is to call {@link Application#getComponentTypes} on the * wrapped {@link Application} object.

*/ @Override public Iterator getComponentTypes() { return getWrapped().getComponentTypes(); } /** *

The default behavior of this method * is to call {@link Application#addConverter(String, String)} on the * wrapped {@link Application} object.

*/ @Override public void addConverter(String converterId, String converterClass) { getWrapped().addConverter(converterId, converterClass); } /** *

The default behavior of this method * is to call {@link Application#addConverter(Class, String)} on the * wrapped {@link Application} object.

*/ @Override public void addConverter(Class targetClass, String converterClass) { getWrapped().addConverter(targetClass, converterClass); } /** *

The default behavior of this method * is to call {@link Application#createConverter(String)} on the * wrapped {@link Application} object.

*/ @Override public Converter createConverter(String converterId) { return getWrapped().createConverter(converterId); } /** *

The default behavior of this method * is to call {@link Application#createConverter(Class)} on the * wrapped {@link Application} object.

*/ @Override public Converter createConverter(Class targetClass) { return getWrapped().createConverter(targetClass); } /** *

The default behavior of this method * is to call {@link Application#getConverterIds} on the * wrapped {@link Application} object.

*/ @Override public Iterator getConverterIds() { return getWrapped().getConverterIds(); } /** *

The default behavior of this method * is to call {@link Application#getConverterTypes} on the * wrapped {@link Application} object.

*/ @Override public Iterator> getConverterTypes() { return getWrapped().getConverterTypes(); } /** *

The default behavior of this method * is to call {@link Application#createMethodBinding(String, Class[])} on the * wrapped {@link Application} object.

* * @deprecated See superclass for alternative. */ @Override @Deprecated public MethodBinding createMethodBinding(String ref, Class[] params) throws ReferenceSyntaxException { return getWrapped().createMethodBinding(ref, params); } /** *

The default behavior of this method * is to call {@link Application#getSupportedLocales} on the * wrapped {@link Application} object.

*/ @Override public Iterator getSupportedLocales() { return getWrapped().getSupportedLocales(); } /** *

The default behavior of this method * is to call {@link Application#setSupportedLocales(java.util.Collection)} on the * wrapped {@link Application} object.

*/ @Override public void setSupportedLocales(Collection locales) { getWrapped().setSupportedLocales(locales); } /** *

The default behavior of this method * is to call {@link Application#addBehavior(String, String)} on the * wrapped {@link Application} object.

*/ @Override public void addBehavior(String behaviorId, String behaviorClass) { getWrapped().addBehavior(behaviorId, behaviorClass); } /** *

The default behavior of this method * is to call {@link Application#createBehavior(String)} on the * wrapped {@link Application} object.

*/ @Override public Behavior createBehavior(String behaviorId) throws FacesException { return getWrapped().createBehavior(behaviorId); } /** *

The default behavior of this method * is to call {@link Application#getBehaviorIds} on the * wrapped {@link Application} object.

*/ @Override public Iterator getBehaviorIds() { return getWrapped().getBehaviorIds(); } /** *

The default behavior of this method * is to call {@link Application#addValidator(String, String)} on the * wrapped {@link Application} object.

*/ @Override public void addValidator(String validatorId, String validatorClass) { getWrapped().addValidator(validatorId, validatorClass); } /** *

The default behavior of this method * is to call {@link Application#createValidator(String)} on the * wrapped {@link Application} object.

*/ @Override public Validator createValidator(String validatorId) throws FacesException { return getWrapped().createValidator(validatorId); } /** *

The default behavior of this method * is to call {@link Application#getValidatorIds} on the * wrapped {@link Application} object.

*/ @Override public Iterator getValidatorIds() { return getWrapped().getValidatorIds(); } /** *

The default behavior of this method * is to call {@link Application#createValueBinding(String)} on the * wrapped {@link Application} object.

*/ @Override public ValueBinding createValueBinding(String ref) throws ReferenceSyntaxException { return getWrapped().createValueBinding(ref); } /** *

The default behavior of this method * is to call {@link Application#getResourceHandler} on the * wrapped {@link Application} object.

*/ @Override public ResourceHandler getResourceHandler() { return getWrapped().getResourceHandler(); } /** *

The default behavior of this method * is to call {@link Application#setResourceHandler(ResourceHandler)} on the * wrapped {@link Application} object.

* * @throws IllegalStateException if this method is called after * at least one request has been processed by the * Lifecycle instance for this application. * @throws NullPointerException if resourceHandler * is null */ @Override public void setResourceHandler(ResourceHandler resourceHandler) { getWrapped().setResourceHandler(resourceHandler); } /** *

The default behavior of this method * is to call {@link Application#getResourceBundle(javax.faces.context.FacesContext, String)} on the * wrapped {@link Application} object.

*/ @Override public ResourceBundle getResourceBundle(FacesContext ctx, String name) { return getWrapped().getResourceBundle(ctx, name); } /** *

The default behavior of this method * is to call {@link Application#getProjectStage} on the * wrapped {@link Application} object.

*/ @Override public ProjectStage getProjectStage() { return getWrapped().getProjectStage(); } /** *

The default behavior of this method * is to call {@link Application#addELResolver(javax.el.ELResolver)} on the * wrapped {@link Application} object.

* * @throws IllegalStateException if called after the first * request to the {@link javax.faces.webapp.FacesServlet} has been * serviced. */ @Override public void addELResolver(ELResolver resolver) { getWrapped().addELResolver(resolver); } /** *

The default behavior of this method * is to call {@link Application#getELResolver} on the * wrapped {@link Application} object.

*/ @Override public ELResolver getELResolver() { return getWrapped().getELResolver(); } /** *

The default behavior of this method * is to call {@link Application#createComponent(javax.el.ValueExpression, javax.faces.context.FacesContext, String)} * on the wrapped {@link Application} object.

*/ @Override public UIComponent createComponent(ValueExpression componentExpression, FacesContext context, String componentType) throws FacesException { return getWrapped().createComponent(componentExpression, context, componentType); } /** *

The default behavior of this method * is to call {@link Application#createComponent(javax.el.ValueExpression, javax.faces.context.FacesContext, String, String)} * on the wrapped {@link Application} object.

*/ @Override public UIComponent createComponent(ValueExpression componentExpression, FacesContext context, String componentType, String rendererType) { return getWrapped().createComponent(componentExpression, context, componentType, rendererType); } /** *

The default behavior of this method * is to call {@link Application#createComponent(javax.faces.context.FacesContext, String, String)} * on the wrapped {@link Application} object.

*/ @Override public UIComponent createComponent(FacesContext context, String componentType, String rendererType) { return getWrapped().createComponent(context, componentType, rendererType); } /** *

The default behavior of this method * is to call {@link Application#createComponent(javax.faces.context.FacesContext, Resource)} * on the wrapped {@link Application} object.

*/ @Override public UIComponent createComponent(FacesContext context, Resource componentResource) { return getWrapped().createComponent(context, componentResource); } /** *

The default behavior of this method * is to call {@link Application#getExpressionFactory} on the * wrapped {@link Application} object.

*/ @Override public ExpressionFactory getExpressionFactory() { return getWrapped().getExpressionFactory(); } @Override public FlowHandler getFlowHandler() { return getWrapped().getFlowHandler(); } @Override public void setFlowHandler(FlowHandler newHandler) { super.setFlowHandler(newHandler); } /** *

The default behavior of this method * is to call {@link Application#evaluateExpressionGet(javax.faces.context.FacesContext, String, Class)} * on the wrapped {@link Application} object.

* * @deprecated See superclass for alternative. */ @Override @Deprecated public T evaluateExpressionGet(FacesContext context, String expression, Class expectedType) throws ELException { return getWrapped().evaluateExpressionGet(context, expression, expectedType); } /** *

The default behavior of this method * is to call {@link Application#addELContextListener(javax.el.ELContextListener)} on the * wrapped {@link Application} object.

*/ @Override public void addELContextListener(ELContextListener listener) { getWrapped().addELContextListener(listener); } /** *

The default behavior of this method * is to call {@link Application#removeELContextListener(javax.el.ELContextListener)} on the * wrapped {@link Application} object.

*/ @Override public void removeELContextListener(ELContextListener listener) { getWrapped().removeELContextListener(listener); } /** *

The default behavior of this method * is to call {@link Application#getELContextListeners} on the * wrapped {@link Application} object.

*/ @Override public ELContextListener[] getELContextListeners() { return getWrapped().getELContextListeners(); } /** *

The default behavior of this method * is to call {@link Application#publishEvent(javax.faces.context.FacesContext, Class, Object)} * on the wrapped {@link Application} object.

*/ @Override public void publishEvent(FacesContext context, Class systemEventClass, Object source) { getWrapped().publishEvent(context, systemEventClass, source); } /** *

The default behavior of this method * is to call {@link Application#publishEvent(javax.faces.context.FacesContext, Class, Class, Object)} * on the wrapped {@link Application} object.

*/ @Override public void publishEvent(FacesContext context, Class systemEventClass, Class sourceBaseType, Object source) { getWrapped().publishEvent(context, systemEventClass, sourceBaseType, source); } /** *

The default behavior of this method * is to call {@link Application#subscribeToEvent(Class, Class, javax.faces.event.SystemEventListener)} on the * wrapped {@link Application} object.

*/ @Override public void subscribeToEvent(Class systemEventClass, Class sourceClass, SystemEventListener listener) { getWrapped().subscribeToEvent(systemEventClass, sourceClass, listener); } /** *

The default behavior of this method * is to call {@link Application#subscribeToEvent(Class, javax.faces.event.SystemEventListener)} on the * wrapped {@link Application} object.

*/ @Override public void subscribeToEvent(Class systemEventClass, SystemEventListener listener) { getWrapped().subscribeToEvent(systemEventClass, listener); } /** *

The default behavior of this method * is to call {@link Application#unsubscribeFromEvent(Class, Class, javax.faces.event.SystemEventListener)} on the * wrapped {@link Application} object.

*/ @Override public void unsubscribeFromEvent(Class systemEventClass, Class sourceClass, SystemEventListener listener) { getWrapped().unsubscribeFromEvent(systemEventClass, sourceClass, listener); } /** *

The default behavior of this method * is to call {@link Application#unsubscribeFromEvent(Class, javax.faces.event.SystemEventListener)} on the * wrapped {@link Application} object.

*/ @Override public void unsubscribeFromEvent(Class systemEventClass, SystemEventListener listener) { getWrapped().unsubscribeFromEvent(systemEventClass, listener); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy