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 org.kuali.rice.ksb.testclient2.InstanceIdFactoryBeanTest.java

/**
 * A factory bean which is used to produce an instance id for the service bus.
 * 
 * <p>The value for the instance id is determined in the following order of preferences:
 * 
 * <ol>

From source file org.mule.config.spring.factories.WatermarkFactoryBean.java

public class WatermarkFactoryBean extends AbstractFactoryBean<Watermark>
        implements MuleContextAware, AnnotatedObject {

    public static final String MULE_WATERMARK_PARTITION = "mule.watermark";
    private static final String DEFAULT_SELECTOR_EXPRESSION = "#[payload]";

From source file org.springframework.amqp.rabbit.connection.RabbitConnectionFactoryBean.java

/**
 * Factory bean to create a RabbitMQ ConnectionFactory, delegating most
 * setter methods and optionally enabling SSL, with or without
 * certificate validation. When {@link #setSslPropertiesLocation(Resource) sslPropertiesLocation}
 * is not null, the default implementation loads a {@code PKCS12} keystore and a
 * {@code JKS} truststore using the supplied properties and intializes {@code SunX509} key

From source file org.springframework.cloud.stream.app.gpfdist.sink.support.GreenplumDataSourceFactoryBean.java

/**
 * Factory bean for configuring a {@link DataSource}. Needed to use
 * both command-line props and a control file.
 *
 * @author Janne Valkealahti
 */

From source file org.springframework.cloud.stream.module.gpfdist.sink.support.GreenplumDataSourceFactoryBean.java

/**
 * Factory bean for configuring a {@link DataSource}. Needed to use
 * both command-line props and a control file.
 *
 * @author Janne Valkealahti
 */

From source file org.springframework.integration.xmpp.XmppConnectionFactory.java

/**
 * This class configures an {@link org.jivesoftware.smack.XMPPConnection} object. This object is used for all scenarios to talk to a Smack server.
 *
 * @author Josh Long
 * @author Mark Fisher
 * @see org.jivesoftware.smack.XMPPConnection

From source file org.springframework.kafka.config.StreamsBuilderFactoryBean.java

/**
 * An {@link AbstractFactoryBean} for the {@link StreamsBuilder} instance
 * and lifecycle control for the internal {@link KafkaStreams} instance.
 *
 * <p>A fine grained control on {@link KafkaStreams} can be achieved by
 * {@link KafkaStreamsCustomizer}s</p>

From source file org.springframework.xd.greenplum.support.GreenplumDataSourceFactoryBean.java

/**
 * Factory bean for configuring a {@link DataSource}. Needed to use
 * both command-line props and a control file.
 *
 * @author Janne Valkealahti
 */

From source file test.jdbc.datasource.DerbyDataSourceFactoryBean.java

public class DerbyDataSourceFactoryBean extends AbstractFactoryBean<DataSource> {

    private static Log logger = LogFactory.getLog(DerbyDataSourceFactoryBean.class);

    private String dataDirectory = "derby-home";