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 terrastore.partition.impl.support.ClusterPartitionerFactoryBean.java

/**
 * @author Sergio Bossa
 */
public class ClusterPartitionerFactoryBean implements FactoryBean {

    private final ClusterPartitioner defaultPartitioner;

From source file io.pivotal.spring.xd.jdbcgpfdist.support.LoadFactoryBean.java

/**
 * FactoryBean for easy creation and configuration of {@link GreenplumLoad}
 * instances.
 *
 * @author Janne Valkealahti
 *

From source file org.bpmscript.integration.internal.proxy.BpmScriptProxyFactoryBean.java

public class BpmScriptProxyFactoryBean implements FactoryBean {

    private IBpmScriptFacade bpmScriptFacade;
    private Class<?> interfaceClass;
    private String definitionName;
    private long defaultTimeout = 0;

From source file ar.com.zauber.commons.spring.beans.factory.StringToMapFactoryBean.java

/**
 * {@link FactoryBean} that creates a {@link Map} with String keys and String
 * values, from a single String. Ex:
 * 
 * <pre>
 * &lt;bean class="ar.com.terra.stream.util.StringToMapFactoryBean"&gt;

From source file terrastore.partition.impl.support.EnsemblePartitionerFactoryBean.java

/**
 * @author Sergio Bossa
 */
public class EnsemblePartitionerFactoryBean implements FactoryBean {

    private final EnsemblePartitioner defaultPartitioner;

From source file org.apache.camel.component.db4o.TestObjectContainerFactoryBean.java

/**
 * @version $Revision$
 */
public class TestObjectContainerFactoryBean implements FactoryBean<ObjectContainer>, DisposableBean {

    private ObjectContainer objectContainer;

From source file cn.cuizuoli.appranking.http.client.TrustSSLSocketFactoryFactoryBean.java

/**
 * TrustSSLSocketFactoryFactoryBean
 * @author cuizuoli
 */
public class TrustSSLSocketFactoryFactoryBean implements FactoryBean<SSLSocketFactory> {

From source file io.fabric8.spring.boot.KubernetesServiceFactoryBean.java

public class KubernetesServiceFactoryBean implements FactoryBean<Object>, InitializingBean {

    private Class<?> type;
    private String name;
    private String port;
    private Service service;

From source file org.craftercms.commons.cache.EhCacheFactoryBean.java

/**
 * Spring {@link org.springframework.beans.factory.FactoryBean} used to create EhCache caches as beans.
 *
 * @author avasquez
 */
public class EhCacheFactoryBean implements FactoryBean<Cache> {

From source file nz.co.senanque.madura.spring.XMLSpringFactoryBean.java

/**
 * 
 * Reads the wired XML file and returns a document
 * Note that it returns a clone of the document to prevent callers from messing with the original.
  * @author Roger Parkinson
 * @version $Revision: 1.4 $