Package org.jboss.spring.factory

Examples of org.jboss.spring.factory.NamedXmlBeanFactory


   {
      return new SpringDeploymentVisitor()
      {
         protected ConfigurableBeanFactory doCreate(SpringMetaData metaData)
         {
            return new NamedXmlBeanFactory(metaData.getDefaultName(), metaData.getResource());
         }

         protected void doClose(ConfigurableBeanFactory beanFactory)
         {
            beanFactory.destroySingletons();
View Full Code Here


@Deprecated
public class BeanFactoryLoaderImpl extends AbstractBeanFactoryLoader
{
   protected BeanFactory createBeanFactory(String defaultName, Resource resource)
   {
      return new NamedXmlBeanFactory(defaultName, resource);
   }
View Full Code Here

TOP

Related Classes of org.jboss.spring.factory.NamedXmlBeanFactory

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.