Class MojarraRuntimePopulator
- java.lang.Object
-
- jakarta.faces.application.ApplicationConfigurationPopulator
-
- com.sun.faces.config.configpopulator.MojarraRuntimePopulator
-
public final class MojarraRuntimePopulator extends ApplicationConfigurationPopulator
-
-
Constructor Summary
Constructors Constructor Description MojarraRuntimePopulator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidpopulateApplicationConfiguration(Document toPopulate)Service providers that implement this service must be called by the Jakarta Faces runtime exactly once for each implementation, at startup, before any requests have been serviced.
-
-
-
Method Detail
-
populateApplicationConfiguration
public void populateApplicationConfiguration(Document toPopulate)
Description copied from class:ApplicationConfigurationPopulatorService providers that implement this service must be called by the Jakarta Faces runtime exactly once for each implementation, at startup, before any requests have been serviced. Before calling the
ApplicationConfigurationPopulator.populateApplicationConfiguration(org.w3c.dom.Document)method, the runtime must ensure that theDocumentargument is empty aside from being pre-configured to be in the proper namespace for an Application Configuration Resources file:https://jakarta.ee/xml/ns/jakartaee. Implementations of this service must ensure that any changes made to the argumentDocumentconform to that schema as defined in the specification. The Jakarta Faces runtime is not required to validate theDocumentafter control returns from the service implementation, though it may do so.Ordering of Artifacts
If the document is made to contain an
<ordering>element, as specified in the section 11.3.8 "Ordering of Artifacts" in the Jakarta Faces Specification Document, the document will be prioritized accordingly. Otherwise, the runtime must place the document in the list of other Application Configuration Resources documents at the "lowest" priority, meaning any conflicts that may arise between the argument document and any other Application Configuration Resources are resolved in favor of the other document.- Specified by:
populateApplicationConfigurationin classApplicationConfigurationPopulator- Parameters:
toPopulate- The Document to populate with configuration.
-
-