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

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

Introduction

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

Usage

From source file net.javacrumbs.springws.test.simple.annotation.ThreadLocalWsMockControlFactoryBean.java

/**
 * Factory bean that keep WsMockControl in {@link ThreadLocal}. This way we make sure that parallel execution of tests
 * works. 
 * @author Lukas Krecan
 *
 */

From source file org.obiba.magma.spring.MagmaEngineFactoryBean.java

/**
 *
 */
public class MagmaEngineFactoryBean implements FactoryBean, InitializingBean, DisposableBean {

    private Set<MagmaEngineExtension> extensions;

From source file net.sf.jdbcwrappers.spring.DataSourceWrapperFactory.java

/**
 * Factory to create a DataSource wrapper in a Spring application context. 
 * 
 */
public class DataSourceWrapperFactory implements FactoryBean, InitializingBean {
    private WrapperFactory wrapperFactory;

From source file org.sift.batch.tag.service.ResourceFactoryBean.java

/**
 * <code>ResourceFactoryBean</code> is a Spring Factory Bean for getting the absolute path of a file located within 
 * the Trooper project. It uses {@link FileLocator} to find the file. It accepts the fileName and returns it's absolute
 * path.
 * 
 * @author devashishshankar

From source file de.widone.web.testhelper.MockFactory.java

public class MockFactory implements FactoryBean {
    private Class type;

    public void setType(final Class type) {
        this.type = type;
    }

From source file org.sakuli.MockitoFactoryBean.java

/**
 * @author tschneck
 *         Date: 15.05.14
 *         <p>
 *         A {@link FactoryBean} for creating mocked beans based on Mockito so that they
 *         can be {@code @Autowired} into Spring test configurations.

From source file org.springmodules.cache.provider.CacheManagerFactoryBean.java

/**
 * <p>
 * Marker interface for factories of cache managers.
 * </p>
 * 
 * @author Alex Ruiz

From source file is.hax.spring.cache.CacheHolderFactoryBean.java

/**
 * Simple wrapper to expose a Cache in the Spring context.
 * 
 * @author Peter Backlund
 * Borrowed from http://code.google.com/p/feeling-lucky-pictures
 */

From source file com.googlecode.spring.appengine.api.factory.LogServiceFactoryBean.java

/**
 * {@link FactoryBean} that creates a {@link LogService}.
 * 
 * <p>Example configuration:
 * 
 * <pre class="code">

From source file br.com.caelum.vraptor.ioc.spring.VRaptorRequestProvider.java

/**
 * @author Fabio Kung
 */
@ApplicationScoped
class VRaptorRequestProvider implements FactoryBean<RequestInfo> {