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 edu.internet2.middleware.shibboleth.common.config.relyingparty.RelyingPartyFactoryBean.java

/**
 * Relying party configuration factory bean.
 */
public class RelyingPartyFactoryBean extends AbstractFactoryBean {

    /** ID of the relying party. */

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

/**
 * Spring factory bean used to create {@link PKIXX509CredentialTrustEngine}s based on a static 
 * PKIXValidationInformation resolver.
 */
public class StaticPKIXX509CredentialTrustEngineFactoryBean extends AbstractFactoryBean {

From source file org.xacml4j.spring.pdp.PolicyDecisionPointFactoryBean.java

public class PolicyDecisionPointFactoryBean extends AbstractFactoryBean<PolicyDecisionPoint>
        implements DisposableBean {
    private PolicyDecisionPointBuilder pdpBuilder;
    private PolicyDecisionPoint pdp;

    public PolicyDecisionPointFactoryBean(String id) {

From source file com.github.mjeanroy.springmvc.view.mustache.configuration.nashorn.MustacheEngineFactoryBean.java

/**
 * Create Nashorn Engine.
 */
public class MustacheEngineFactoryBean extends AbstractFactoryBean<MustacheEngine>
        implements FactoryBean<MustacheEngine> {

From source file io.gravitee.management.idp.ldap.lookup.LdapContextSourceFactory.java

/**
 * @author David BRASSELY (david at gravitee.io)
 * @author GraviteeSource Team
 */
public class LdapContextSourceFactory extends AbstractFactoryBean<LdapContextSource> {

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

public class MongoFactoryBean extends AbstractFactoryBean<Mongo> {

    private String hostname;
    private int port = 27017;
    private boolean autoConnectRetry = true;
    private int connectionsPerHost = 50;

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

/**
 * Create mustache compiler.
 * Use classpath detection to instantiate appropriate implementation.
 * Beans are retrieved using application context.
 */
public class MustacheCompilerFactoryBean extends AbstractFactoryBean<MustacheCompiler>

From source file org.xacml4j.spring.repository.InMemoryPolicyRepositoryFactoryBean.java

public class InMemoryPolicyRepositoryFactoryBean extends AbstractFactoryBean<PolicyRepository> {
    private final String id;
    private Resource[] resources;
    private FunctionProvider extensionFunctions;
    private DecisionCombiningAlgorithmProvider extensionDecisionCombiningAlgorithms;

From source file se.trillian.goodies.spring.DomainObjectFactoryFactoryBean.java

/**
 * Spring {@link FactoryBean} which creates factories for domain objects. The 
 * <code>interfaceClass</code> property specifies the domain object interface. 
 * The <code>implementationClass</code> specifies the concrete domain object 
 * implementation class. The factory class to be implemented is specified 
 * using the <code>factoryClass</code> property. If <code>factoryClass</code>

From source file info.archinnov.achilles.integration.spring.ThriftPersistenceManagerFactoryBean.java

public class ThriftPersistenceManagerFactoryBean extends AbstractFactoryBean<ThriftPersistenceManager> {
    private static ThriftPersistenceManager manager;
    private String entityPackages;

    private Cluster cluster;
    private Keyspace keyspace;