Example usage for org.springframework.context ConfigurableApplicationContext interface-usage

List of usage examples for org.springframework.context ConfigurableApplicationContext interface-usage

Introduction

In this page you can find the example usage for org.springframework.context ConfigurableApplicationContext interface-usage.

Usage

From source file spring.osgi.context.OsgiApplicationContext.java

/**
 * Interface that extends <code>ConfigurableApplicationContext</code> to
 * provides OSGi specific functionality.
 * <p/>
 * <p/>
 * <strong>Note:</strong> Just like its ancestors,the setters of this interface

From source file io.github.moosbusch.permagon.application.PermagonApplicationContext.java

/**
 *
 * @author moosbusch
 */
public interface PermagonApplicationContext
        extends ConfigurableApplicationContext, BundleTrackerCustomizer, ServiceTrackerCustomizer {

From source file io.github.moosbusch.lumpi.application.LumpiApplicationContext.java

/**
 *
 * @author moosbusch
 */
public interface LumpiApplicationContext
        extends ConfigurableApplicationContext, PropertyChangeAware, MapListener<String, Object> {

From source file org.web4thejob.context.SessionContext.java

/**
 * <p>This interface describes the application context that is bound to the session scope.</p>
 *
 * @author Veniamin Isaias
 * @since 1.0.0
 */

From source file org.os890.ds.addon.spring.impl.EditableConfigurableApplicationContextProxy.java

@Exclude
public class EditableConfigurableApplicationContextProxy implements ConfigurableApplicationContext {
    private ConfigurableApplicationContext wrapped;

    public EditableConfigurableApplicationContextProxy(ConfigurableApplicationContext wrapped) {
        this.wrapped = wrapped;

From source file org.springframework.context.support.AbstractApplicationContext.java

/**
 * Abstract implementation of the {@link org.springframework.context.ApplicationContext}
 * interface. Doesn't mandate the type of storage used for configuration; simply
 * implements common context functionality. Uses the Template Method design pattern,
 * requiring concrete subclasses to implement abstract methods.
 *