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

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

Introduction

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

Usage

From source file com.sishuok.bigpipe.handler.BigpipeTaskReturnValueHandler.java

/**
 * <p>User: Zhang Kaitao
 * <p>Date: 13-7-29 ?12:06
 * <p>Version: 1.0
 */
public class BigpipeTaskReturnValueHandler

From source file org.nsesa.editor.gwt.an.common.server.service.gwt.SpringRemoteServiceServlet.java

/**
 * Spring integration for a GWT {@link RemoteServiceServlet}.
 *
 * @author <a href="mailto:p.luppens@gmail.com">Philip Luppens</a>
 * @version $Id:$
 */

From source file org.vaadin.spring.events.support.VaadinEventBusAwareProcessor.java

/**
 * {@link org.springframework.beans.factory.config.BeanPostProcessor}
 * implementation that passes the corresponding EventBus to beans that
 * implement the one of the {@link org.vaadin.spring.events.EventBusAware} interfaces
 *
 * @author Gert-Jan Timmer (gjr.timmer@gmail.com)

From source file org.brixcms.rmiserver.boot.BootstrapperFactoryBean.java

public class BootstrapperFactoryBean implements ApplicationContextAware, InitializingBean {
    private ApplicationContext ctx;

    private SessionFactory sessionFactory;

    private UserService userService;

From source file nz.co.senanque.madura.configuration.ReloadListener.java

/**
 * 
 * Listens for the reload event and, when it is completed, reloads the Spring beans.
 * 
 * @author Roger Parkinson
 * @version $Revision: 1.2 $

From source file com.qpark.eip.core.spring.lockedoperation.AbstractAsyncLockableOperation.java

/**
 * Abstract asynchronous inheritance of the {@link AbstractLockableOperation}.
 * Runs the process in an {@link Callable}. Heirs need to implement
 * {@link #invokeOperationAsync(LockableOperationContext)} where there provide
 * the business logic.
 *

From source file com.example.config.BeanCountingApplicationListener.java

/**
 * @author Dave Syer
 *
 */
public class BeanCountingApplicationListener
        implements ApplicationListener<ApplicationReadyEvent>, ApplicationContextAware {

From source file com.himanshu.spring.context.loader.sameconfigallcontext.ServiceFactorySameConfigAllContext.java

public class ServiceFactorySameConfigAllContext implements ApplicationContextAware, InitializingBean {

    private Logger logger = LoggerFactory.getLogger(getClass());

    private String contextsToLoad = "context1,context2";

From source file com.himanshu.spring.context.loader.diffconfigpercontext.ServiceFactoryDiffConfigPerContext.java

public class ServiceFactoryDiffConfigPerContext implements ApplicationContextAware, InitializingBean {

    private Logger logger = LoggerFactory.getLogger(getClass());

    private String contextsToLoad = "context1,context2";

From source file org.carewebframework.api.AppFramework.java

/**
 * Core class for managing the application framework. It provides a registration service for
 * components. It also interfaces with the Spring application context to perform automatic bean
 * registration.
 */
public class AppFramework implements ApplicationContextAware, DestructionAwareBeanPostProcessor {