Example usage for org.springframework.beans.factory BeanClassLoaderAware interface-usage

List of usage examples for org.springframework.beans.factory BeanClassLoaderAware interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory BeanClassLoaderAware interface-usage.

Usage

From source file net.beachchou.spring.ioc.aware.BeanClassLoaderAwareBean.java

/**
 *
 * @author beach
 */
public class BeanClassLoaderAwareBean implements BeanClassLoaderAware {

From source file org.mule.extras.springproxies.SynchClientFactoryBean.java

public class SynchClientFactoryBean extends SynchClientInvokerInterceptor
        implements FactoryBean, BeanClassLoaderAware {

    private Object proxy;
    private Class serviceInterface;
    private ClassLoader beanClassLoader = ClassUtils.getDefaultClassLoader();

From source file prospring3.ch5.beanpostprocessor.DeassociateBeanPostProcessor.java

/**
 * ***********************************************************************
 * <p/>
 * Copyright:
 * 2012 1&1 Internet AG, Germany, http://www.1und1.de
 * <p/>

From source file spring.test.RemotingSupport.java

/**
* Generic support base class for remote accessor and exporters,
* providing common bean ClassLoader handling.
*
* @author Juergen Hoeller
* @since 2.5.2

From source file org.impalaframework.classloader.SharedClassLoaderFactory.java

/**
 * Trivial implementation of {@link ClassLoader}. Exposes
 * {@link BeanClassLoaderAware#setBeanClassLoader(ClassLoader)} to capture the
 * class loader which loads the Impala application context. Simply returns this
 * when {@link #newClassLoader(Application, ClassLoader, ModuleDefinition)} is called.
 * 

From source file org.springframework.remoting.support.RemotingSupport.java

/**
 * Generic support base class for remote accessor and exporters,
 * providing common bean ClassLoader handling.
 *
 * @author Juergen Hoeller
 * @since 2.5.2

From source file com.sybase365.mobiliser.custom.project.client.WeatherTargetSource.java

/**
 * @since 2012-05-10
 */
public class WeatherTargetSource extends AbstractRefreshableTargetSource<WeatherSoap>
        implements BeanClassLoaderAware {

From source file de.davidbilge.spring.remoting.amqp.client.AmqpProxyFactoryBean.java

/**
 * {@link FactoryBean} for AMQP proxies. Exposes the proxied service for use as a bean reference, using the specified
 * service interface. Proxies will throw Spring's unchecked RemoteAccessException on remote invocation failure.
 * 
 * <p>
 * This is intended for an "RMI-style" (i.e. synchroneous) usage of the AMQP protocol. Obviously, AMQP allows for a much

From source file org.springframework.scheduling.support.MethodInvokingRunnable.java

/**
 * Adapter that implements the {@link Runnable} interface as a configurable
 * method invocation based on Spring's MethodInvoker.
 *
 * <p>Inherits common configuration properties from
 * {@link org.springframework.util.MethodInvoker}.

From source file org.jdal.remoting.rmi.RmiProxyFactoryBean.java

/**
 * @author Jose Luis Martin - (jlm@joseluismartin.info)
 *
 */
public class RmiProxyFactoryBean extends RmiClientInterceptor implements FactoryBean<Object>, BeanClassLoaderAware {