Interface FacesConfigResourceProvider
-
- All Superinterfaces:
ConfigurationResourceProvider
public interface FacesConfigResourceProvider extends ConfigurationResourceProvider
Classes that implement this interface return zero or more
URLs which refer to application configuration resources (i.e. documents conforming the faces-config DTD or Schema).Implementations of this interface are made known to the runtime using service discovery.
For example:
META - INF / services / com.sun.faces.spi.FacesConfigResourceProvider
The file,
com.sun.faces.spi.FacesConfigResourceProvider, contains a single line which represents the fully qualified class name of the concreteFacesConfigResourceProvider.The
FacesConfigResourceProviderinstances that are found will be inserted into a List of existingConfigurationResourceProvidersafter those that processfaces-config.xmlfiles inMETA-INFbut before those that processfaces-config.xmlfiles in the web application. If the documents returned by thisConfigurationResourceProviderinstance require specific ordering semantics, then use the partial or absolute ordering feature provided by the Jakarta Faces 2.0 specification.
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERVICES_KEY
-
Method Summary
-
Methods inherited from interface com.sun.faces.spi.ConfigurationResourceProvider
getResources, validateXml
-
-
-
-
Field Detail
-
SERVICES_KEY
static final String SERVICES_KEY
- See Also:
- Constant Field Values
-
-