Package org.springframework.faces.config

Source Code of org.springframework.faces.config.ResourcesJavaConfigTests$FacesFlowConfig

package org.springframework.faces.config;

import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Configuration;

public class ResourcesJavaConfigTests extends AbstractResourcesConfigurationTests {


  @Override
  protected ApplicationContext initApplicationContext() {
    return new AnnotationConfigApplicationContext(FacesFlowConfig.class);
  }

  @Configuration
  static class FacesFlowConfig extends AbstractFacesPortletFlowConfiguration {

  }

}
TOP

Related Classes of org.springframework.faces.config.ResourcesJavaConfigTests$FacesFlowConfig

TOP
Copyright © 2018 www.massapi.com. 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.