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 io.gravitee.repository.redis.common.RedisConnectionFactory.java

/**
 * @author David BRASSELY (david.brassely at graviteesource.com)
 * @author GraviteeSource Team
 */
public class RedisConnectionFactory
        implements FactoryBean<org.springframework.data.redis.connection.RedisConnectionFactory> {

From source file com.otterca.common.crypto.X509CertificateBuilderFactory.java

/**
 * Spring bean that creates X509CertificateBuilders.
 * 
 * @author bgiles@otterca.com
 */
public class X509CertificateBuilderFactory implements FactoryBean<X509CertificateBuilder> {

From source file org.codehaus.groovy.grails.plugins.quartz.JobDetailFactoryBean.java

/**
 * Simplified version of Spring's <a href='http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/scheduling/quartz/MethodInvokingJobDetailFactoryBean.html'>MethodInvokingJobDetailFactoryBean</a>
 * that avoids issues with non-serializable classes (for JDBC storage).
 *
 * @author <a href='mailto:beckwithb@studentsonly.com'>Burt Beckwith</a>
 * @author Sergey Nebolsin (nebolsin@gmail.com)

From source file org.jboss.seam.spring.test.utils.WeldEmbeddedBeanManagerFactoryBean.java

/**
 * @author: Marius Bogoevici
 */
public class WeldEmbeddedBeanManagerFactoryBean implements FactoryBean<BeanManager> {

    @Override

From source file info.jtrac.config.ProviderManagerFactoryBean.java

/**
 * acegi authentication provider manager factory bean
 * conditionally sets up ldap authentication
 */
public class ProviderManagerFactoryBean implements FactoryBean {

From source file org.castor.spring.xml.AbstractCastorPrototypingXMLFactoryBean.java

/**
 * Abstract implementation to share the snippet of setting the SpringXMLContext into
 * Marshaller or Unmarshaller instances.
 * 
 * @author <a href="mailto:werner DOT guttmann AT gmx DOT net">Werner Guttmann</a>
 */

From source file org.jasig.portlet.calendar.spring.StringEncryptorFactoryBean.java

public class StringEncryptorFactoryBean implements FactoryBean<StringEncryptor> {

    public static final String JAYSYPT_ENCRYPTION_KEY_VARIABLE = "UP_JASYPT_KEY";

    private final Logger logger = LoggerFactory.getLogger(getClass());

From source file org.springframework.data.gemfire.function.FunctionServiceFactoryBean.java

/**
 * Spring FactoryBean for registering instance of GemFire Function with the GemFire FunctionService.
 *
 * @author David Turanski
 * @author John Blum
 * @see org.springframework.beans.factory.FactoryBean

From source file org.drools.container.spring.beans.EventListenersBeanFactory.java

public class EventListenersBeanFactory implements FactoryBean, InitializingBean {

    List<Object> eventListeners;

    public Object getObject() throws Exception {
        return eventListeners;

From source file org.springframework.http.embedded.EmbeddedServerFactory.java

/**
 * The Factory bean implementation that will be used to generate an instance of
 * {@link EmbeddedServer} based on the type requested
 * @author Amol Nayak
 *
 */