Example usage for org.springframework.beans.factory.config AbstractFactoryBean subclass-usage

List of usage examples for org.springframework.beans.factory.config AbstractFactoryBean subclass-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config AbstractFactoryBean subclass-usage.

Usage

From source file com.stormpath.spring.security.client.ClientFactory.java

/**
 * A simple factory that allows a Stormpath SDK Client to be created via Spring's
 * {@link org.springframework.beans.factory.config.AbstractFactoryBean} concept.
 * <p/>
 * As this class is a simple bridge between APIs, it does not do much - all configuration properties are immediately
 * passed through to an internal {@link com.stormpath.sdk.client.ClientBuilder ClientBuilder} instance, and the

From source file edu.internet2.middleware.shibboleth.common.config.attribute.filtering.AttributeFilterPolicyFactoryBean.java

/**
 * Spring factory for {@link AttributeFilterPolicy}s.
 */
public class AttributeFilterPolicyFactoryBean extends AbstractFactoryBean {

    /** Unique identifier for this policy. */

From source file edu.internet2.middleware.shibboleth.common.config.security.MetadataPKIXX509CredentialTrustEngineFactoryBean.java

/**
 * Spring factory bean used to created {@link PKIXX509CredentialTrustEngine}s based on a metadata provider.
 */
public class MetadataPKIXX509CredentialTrustEngineFactoryBean extends AbstractFactoryBean {

    /** Metadata provider used to look up key information for peer entities. */

From source file com.bbytes.jfilesync.jgroup.ChannelBeanFactory.java

/**
 * This is the jgroup channel for new node discovery and for file event transmission to all nodes.
 * Gossip protocol is used for new node discovery
 * 
 * @author Thanneer
 * 

From source file io.gravitee.reporter.elastic.spring.factory.ElasticClientFactory.java

public class ElasticClientFactory extends AbstractFactoryBean<Client> {

    private final Logger LOGGER = LoggerFactory.getLogger(ElasticClientFactory.class);

    @Autowired
    private ElasticConfiguration configuration;

From source file org.lightadmin.core.config.bootstrap.RepositoriesFactoryBean.java

public class RepositoriesFactoryBean extends AbstractFactoryBean<Repositories> {

    @Override
    public Class<?> getObjectType() {
        return Repositories.class;
    }

From source file com.github.mjeanroy.springmvc.view.mustache.configuration.handlebars.HandlebarsFactoryBean.java

/**
 * Factory used to create instance of {@link com.github.jknack.handlebars.Handlebars}.
 */
public class HandlebarsFactoryBean extends AbstractFactoryBean<Handlebars> implements FactoryBean<Handlebars> {

    /**

From source file com.streamreduce.datasource.MorphiaFactoryBean.java

public class MorphiaFactoryBean extends AbstractFactoryBean<Morphia> {

    private String[] mapPackages;
    private String[] mapClasses;
    private boolean ignoreInvalidClasses;

From source file io.gravitee.repository.elasticsearch.analytics.spring.ElasticClientFactory.java

/**
 * @author David BRASSELY (brasseld at gmail.com)
 */
public class ElasticClientFactory extends AbstractFactoryBean<Client> {

    private final Logger LOGGER = LoggerFactory.getLogger(ElasticClientFactory.class);

From source file org.exoplatform.mongo.factory.MongoFactoryBean.java

/**
 * @author <a href="mailto:sondn@exoplatform.com">Ngoc Son Dang</a>
 * @since Jul 13, 2013
 * @version 
 * 
 * @tag