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 org.springforpro.chptr5.event.Publisher.java

/**  @author igorm  */
public class Publisher implements ApplicationContextAware {
    private ApplicationContext ctx;

    @Override
    public void setApplicationContext(ApplicationContext ac) throws BeansException {

From source file com.eyem.bean.ApplicationContextHolder.java

/**
 *
 * @author maramec
 */
@Component
public class ApplicationContextHolder implements ApplicationContextAware {

From source file com.eu.evaluation.server.ApplicationContextRegister.java

/**
 *
 * @author dell
 */
@Component
public class ApplicationContextRegister implements ApplicationContextAware {

From source file com.home.ln_spring.ch5.event.Publisher.java

/**
 *
 * @author vitaliy
 */
public class Publisher implements ApplicationContextAware {

From source file com.springapp.mvc.bigpipe.finder.DefaultPageletFinder.java

/**
 * <p>User: Zhang Kaitao
 * <p>Date: 13-8-3 ?8:51
 * <p>Version: 1.0
 */
public class DefaultPageletFinder implements PageletFinder, ApplicationContextAware {

From source file model.validator.utils.ApplicationContextProvider.java

/**
 *
 * @author Bert
 */
@Component
public class ApplicationContextProvider implements ApplicationContextAware {

From source file omero.cmdexample.RequestObjectFactoryRegistry.java

/**
 * SPI type picked up from the Spring configuration and given a chance to
 * register all its {@link Ice.ObjectFactory} instances with the
 * {@link Ice.Communicator}.
 *
 * @see ticket:6340

From source file gov.nih.nci.cabig.ctms.web.tabs.DefaultTabConfigurer.java

/**
 * Implements {@link TabConfigurer} by delegating to the containing application context.
 *
 * @author Rhett Sutphin
 */
public class DefaultTabConfigurer implements TabConfigurer, ApplicationContextAware {

From source file it.geosolutions.geoserver.jms.events.ToggleSwitch.java

/**
 * An instance of this class can be used to send over the Application Context
 * ToggleEvent events. Those events can be used by the a producer to enable or
 * disable the message events production over the JMS channel.
 * 
 * @see {@link JMSEventListener}

From source file com.taobao.ad.easyschedule.job.EsApplicationContext.java

public class EsApplicationContext implements ApplicationContextAware {
    private static ApplicationContext context;

    @Override
    public void setApplicationContext(ApplicationContext aContext) throws BeansException {
        context = aContext;