Example usage for org.springframework.beans.factory InitializingBean interface-usage

List of usage examples for org.springframework.beans.factory InitializingBean interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory InitializingBean interface-usage.

Usage

From source file org.springdata.ehcache.config.MappingConverterFactoryBean.java

/**
 * 
 * @author Alex Shvid
 * 
 */

From source file com.apress.prospringintegration.customadapters.inbound.eventdriven.BasicEventDrivenInboundChannelAdapter.java

public class BasicEventDrivenInboundChannelAdapter implements InitializingBean {

    private MessagingTemplate template = new MessagingTemplate();

    private MessageChannel channel;

From source file com.googlecode.janrain4j.springframework.EngagePartnerServiceFactoryBean.java

/**
 * {@link org.springframework.beans.factory.FactoryBean} that sets up an {@link com.googlecode.janrain4j.api.engage.EngagePartnerService} and exposes it for 
 * bean references.
 * 
 * <p>Usage example:
 * <pre>

From source file biz.c24.io.spring.integration.selector.C24StringValueTestXPathMessageSelector.java

/**
 * @author askogman
 * 
 */
public class C24StringValueTestXPathMessageSelector extends AbstractXPathMessageSelector
        implements InitializingBean {

From source file org.eclipse.swordfish.samples.configuration.ConfigurationProvider.java

import org.springframework.util.Assert;

public class ConfigurationProvider implements InitializingBean {

    private static final Log LOG = LogFactory.getLog(ConfigurationProvider.class);

From source file com.joshlong.esb.springintegration.modules.net.sftp.QueuedSFTPSessionPool.java

/**
 * @author <a href="mailto:josh@joshlong.com">Josh Long</a>
 */
public class QueuedSFTPSessionPool implements SFTPSessionPool, InitializingBean {
    public static final Logger LOGGER = Logger.getLogger(QueuedSFTPSessionPool.class);
    public static final int DEFAULT_POOL_SIZE = 10;

From source file org.dspace.authenticate.AuthenticationServiceImpl.java

/**
 * Access point for the stackable authentication methods.
 * <p>
 * This class initializes the "stack" from the DSpace configuration,
 * and then invokes methods in the appropriate order on behalf of clients.
 * <p>

From source file org.trpr.platform.batch.impl.spring.processor.CompositeItemProcessor.java

/**
 * The <code>CompositeItemProcessor</code> class is an implementation of the {@link ItemProcessor} that implements the Composite design
 * pattern of executing all invoked operations on delegate ItemProcessorS. The delegates may be of type {@link ItemTransformer} that are used to
 * transform or filter out data being passed.  
 * 
 * @author Regunath B

From source file org.openlegacy.providers.jt400.Jt400RpcConnectionFactory.java

public class Jt400RpcConnectionFactory implements RpcConnectionFactory, InitializingBean {

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

    @Inject
    private ApplicationContext applicationContext;

From source file com.ebay.jetstream.event.processor.esper.EsperExceptionHandler.java

/**
 * This class will be called by EsperEngine when there is RuntimeException
 * thrown during EPL statement processing. Last Exception will be set for
 * debugging purposes. It also counts number of exceptions thrown per second
 * with EWMA counter. Based on the exception count, action can be taken.
 *