Package com.sun.faces.application

Examples of com.sun.faces.application.ApplicationFactoryImpl


  private BeanManager bm;

  @Override
  public void initApplication(final FacesApplication application)
  {
    ApplicationFactoryImpl applFactoryImpl = new ApplicationFactoryImpl();
        // set impl
        application.setImplementation(this, applFactoryImpl.getApplication());
        // Application Map
        Map<String, Object> appMap = FacesContext.getCurrentInstance().getExternalContext().getApplicationMap();
        appMap.put(InjectionApplicationFactory.class.getName(), application);
        // init Bean Manager
    FacesContext fc = FacesContext.getCurrentInstance();
View Full Code Here

TOP

Related Classes of com.sun.faces.application.ApplicationFactoryImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.