use of javax.faces.application.Application in project deltaspike by apache.
the class DeltaSpikeFacesContextWrapper method getApplication.
@Override
public Application getApplication() {
lazyInit();
Application wrappedApplication = this.wrappedFacesContext.getApplication();
if (this.isNavigationAwareApplicationWrapperActivated) {
wrappedApplication = new NavigationHandlerAwareApplication(wrappedApplication);
}
return new InjectionAwareApplicationWrapper(wrappedApplication, this.jsfModuleConfig, this.preDestroyViewMapEventFilterMode, this.projectStage);
}
Aggregations