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 org.craftercms.commons.crypto.SecretKeyFactoryBean.java

/**
 * Spring factory bean used to easily inject a secret key from a
 * {@link org.craftercms.commons.crypto.SecretKeyRepository}.
 *
 * @author avasquez
 */

From source file org.alfresco.dataprep.AlfrescoHttpClientFactory.java

/**
 * Alfresco HttpClient factory.
 * 
 * @author Michael Suzuki
 */
public class AlfrescoHttpClientFactory implements FactoryBean<AlfrescoHttpClient> {

From source file org.yestech.lib.spring.TerracottaPipeFactoryBean.java

/**
 * Spring Factory to create a Terracotta Pipe
 * 
 * @author Artie Copeland
 * @version $Revision: $
 */

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

/**
 * Creates a URL from the wired source.
 * 
 * @author Roger Parkinson
 * @version $Revision: 1.5 $
 */

From source file org.beanio.spring.BeanIOStreamFactory.java

/**
 * A Spring factory bean for creating shared {@link StreamFactory} instances for
 * BeanIO item readers and writers.  Using a shared <tt>StreamFactory</tt> can improve
 * performance by preventing mapping files from being loaded more than once when
 * multiple item readers and writers are repeatedly invoked or share the same mapping
 * configuration.

From source file org.vbossica.azurebox.storage.CloudStorageAccountFactoryBean.java

/**
 * @author vladimir
 */
public class CloudStorageAccountFactoryBean implements FactoryBean<CloudStorageAccount>, InitializingBean {

    private String protocol = "http";

From source file nivance.jpa.cassandra.prepare.mapping.CassandraMappingConverterFactoryBean.java

/**
 * Convenient factory for configuring a CassandraConverter.
 * 
 * @author Alex Shvid
 */

From source file org.echocat.jomon.spring.i18n.LocaleProvider.java

public class LocaleProvider implements BeanPostProcessor, InitializingBean, FactoryBean<Set<Locale>> {

    private final Set<Locale> _locales = new HashSet<>();

    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {

From source file org.qi4j.library.spring.bootstrap.internal.service.ServiceFactoryBean.java

public final class ServiceFactoryBean implements FactoryBean {
    private ServiceDescriptor serviceDescriptor;
    private ServiceReference serviceReference;

    public ServiceFactoryBean(Application anApplication, String aServiceId) throws IllegalArgumentException {
        notNull(anApplication, "Argument [anApplication] must not be [null].");

From source file com.zuoxiaolong.blog.sdk.spring.BlogSdkFactoryBean.java

/**
 * ??SDKspring IOC?
 *
 * @author Xiaolong Zuo
 * @since 1.0.0
 */