List of usage examples for org.springframework.context ApplicationContextAware interface-usage
From source file com.springapp.mvc.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 it.geosolutions.geobatch.settings.GBSettingsProcessor.java
/** * * @author ETj (etj at geo-solutions.it) */ public class GBSettingsProcessor implements ApplicationContextAware { private static Logger LOGGER = LoggerFactory.getLogger(GBSettingsProcessor.class);
From source file org.jtheque.ui.utils.AbstractController.java
/**
* An abstract controller. It handles all the request, translate them into method name and then execute the method using
* Reflection.
*
* @author Baptiste Wicht
*/
From source file com.developmentsprint.spring.breaker.support.CircuitBreakerAspectSupport.java
public abstract class CircuitBreakerAspectSupport implements InitializingBean, ApplicationContextAware, EmbeddedValueResolverAware { private CircuitManager circuitManager; private boolean initialized = false;
From source file org.jtheque.ui.utils.builded.OSGIBuildedPanel.java
/** * An OSGi builded panel. * * @author Baptiste Wicht */ public abstract class OSGIBuildedPanel extends BuildedPanel implements BundleContextAware, ApplicationContextAware {
From source file org.synyx.hades.extensions.beans.GenericDaoPropertyEditorRegistrar.java
/**
* Simple helper class to use Hades DAOs to provide
* {@link java.beans.PropertyEditor}s for domain classes. To get this working
* configure a
* {@link org.springframework.web.bind.support.ConfigurableWebBindingInitializer}
* for your
From source file org.alfresco.integrations.google.docs.webscripts.GoogleDocsWebScripts.java
public abstract class GoogleDocsWebScripts extends DeclarativeWebScript implements ApplicationContextAware { protected final static String GOOGLEDOCS_V2_SUBSYSTEM = "googledocs_v2"; protected final static String GOOGLEDOCSSERVICE = "googledocsService"; protected ApplicationContext applicationContext;
From source file com.fredhopper.connector.index.provider.SpringProviderResolver.java
/** * Spring implementation of {@link ProviderResolver} */ public class SpringProviderResolver implements ProviderResolver, ApplicationContextAware { private ApplicationContext applicationContext; private AttributeProvider defaultAttributeProvider;
From source file nats.client.spring.NatsAnnotationsConfiguration.java
/**
* Java config for providing {@link Subscribe @Subscribe} support.
*
* @author Mike Heath <elcapo@gmail.com>
*/
@Configuration
From source file com.github.xdcrafts.flower.spring.impl.AbstractActionFactoryBean.java
/** * Abstract action bean factory that aware of bean name. * @param <T> class type */ public abstract class AbstractActionFactoryBean<T> extends AbstractNameAwareFactoryBean<T> implements ApplicationContextAware {