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

org.apache.myfaces.spi.FacesConfigurationProvider Maven / Gradle / Ivy

Go to download

The private implementation classes of the Apache MyFaces Core JSF-2.1 Implementation

There is a newer version: 4.1.0-RC2
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.myfaces.spi;

import java.util.List;

import javax.faces.context.ExternalContext;

import org.apache.myfaces.config.element.FacesConfig;

/**
 * This interface provide a way to merge and store all JSF config information retrieved
 * from faces-config files, META-INF/service files and annotations that works as base
 * point to initialize MyFaces. The objective is allow server containers to "store" or
 * this information, preventing calculate it over and over each time the web application
 * is started.
 * 
 * 

To wrap the default FacesConfigurationProvider, use a constructor like * CustomFacesConfigurationProvider(FacesConfigurationProvider fcp) * and extend it from FacesConfigurationProviderWrapper

* * @author Leonardo Uribe * @since 2.0.3 * */ public abstract class FacesConfigurationProvider { /** * Return the FacesConfig object model retrieved from MyFaces META-INF/standard-faces-config.xml file. * * @param ectx * @return */ public abstract FacesConfig getStandardFacesConfig(ExternalContext ectx); /** * Return the FacesConfig object model retrieved from locate all JSF factories from META-INF/services/[factory_key]. * * The default implementation uses ServiceProviderFinder facilities to locate this SPI interfaces. * * @param ectx * @return */ public abstract FacesConfig getMetaInfServicesFacesConfig(ExternalContext ectx); /** * Return the FacesConfig object model retrieved from scanning annotations on the classpath. * * @param ectx * @param metadataComplete * @return */ public abstract FacesConfig getAnnotationsFacesConfig(ExternalContext ectx, boolean metadataComplete); /** * Return the FacesConfig object model retrieved from resources under the path * META-INF/faces-config.xml and META-INF/[prefix].faces-config.xml * * @param ectx * @return */ public abstract List getClassloaderFacesConfig(ExternalContext ectx); /** * Return the FacesConfig object model retrieved from javax.faces.CONFIG_FILES web config attribute * * @param ectx * @return */ public abstract List getContextSpecifiedFacesConfig(ExternalContext ectx); /** * Return the FacesConfig object model retrieved from WEB-INF/faces-config.xml * * @param ectx * @return */ public abstract FacesConfig getWebAppFacesConfig(ExternalContext ectx); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy