All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.xfire.spring.GenericApplicationContext Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package org.codehaus.xfire.spring;

import org.apache.xbean.spring.context.SpringApplicationContext;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.context.ApplicationContext;

class GenericApplicationContext extends org.springframework.context.support.GenericApplicationContext
    implements SpringApplicationContext
{

    public GenericApplicationContext()
    {
        super();
    }

    public GenericApplicationContext(ApplicationContext arg0)
    {
        super(arg0);
    }

    public GenericApplicationContext(DefaultListableBeanFactory arg0, ApplicationContext arg1)
    {
        super(arg0, arg1);
    }

    public GenericApplicationContext(DefaultListableBeanFactory arg0)
    {
        super(arg0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy