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.bpmscript.process.autostart.SpringAutoStart.java

/**
 * Starts up a list of processes 
 */
public class SpringAutoStart implements InitializingBean {

    private IAutoStartManager autoStartManager;

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

/**
 * @author <a href="mailto:josh@joshlong.com">Josh Long</a>
 * @author <a href="mailto:mario.gray@gmail.com">Mario Gray</a>
 */
public class SFTPSessionFactory implements FactoryBean<SFTPSession>, InitializingBean {
    private volatile String knownHosts;

From source file de.brands4friends.daleq.integration.beans.PrepareMysqlSchema.java

public class PrepareMysqlSchema implements InitializingBean {

    private final Logger logger = LoggerFactory.getLogger(PrepareMysqlSchema.class);

    private final DataSource dataSource;

From source file com.iisigroup.cap.message.CapReloadableResourceBundleMessageSource.java

/**
 * <pre>
 * ReloadableResourceBundleMessageSource
 * </pre>
 * 
 * @since 2011/12/23

From source file pl.edu.agh.ServiceConnection.java

/**
 * Connects to services that run in push mode
 */
public class ServiceConnection implements InitializingBean, Runnable {

    private ServiceDAO serviceDAO;

From source file org.opendatakit.common.security.Realm.java

/**
 * A bean class used to capture configuration values about this server
 * deployment, its default mailto: domain and the service domains it
 * authorizes.
 *
 * @author wbrunette@gmail.com

From source file com.gradecak.alfresco.mvc.aop.PackageAutoProxyCreator.java

/**
 * a proxy creator that applies the specified advisors to the classes defined in the base package. The default advisors are 
 * {@link AuthenticationAdvice}, {@link RunAsAdvice} and {@link TransactionalAdvice} 
 * however your own might be added and the default could be skipped by setting skipDefaultInterceptos to true
 */
public class PackageAutoProxyCreator extends AbstractAutoProxyCreator implements InitializingBean {

From source file com.joshlong.esb.springintegration.modules.net.feed.web.test.FeedUtils.java

/**
 * This class offers utility support for various feed-building exercises on top of the ROME API.
 *
 * @author <a href="mailto:josh@joshlong.com">Josh Long</a>
 * @see {@link com.sun.syndication.feed.synd.SyndFeed}
 * @see {@link com.sun.syndication.feed.synd.SyndEntry}

From source file nz.co.senanque.madura.bundle.InnerBundleFactory.java

/**
 * 
 * This factory is used to deliver exported beans to the bundle beans.
 * 
 * @author Roger Parkinson
 * @version $Revision:$

From source file org.terasoluna.gfw.common.sequencer.JdbcSequencer.java

/**
 * Implementation class for the Sequencing Functionality Uses JDBC to query the database to fetch the next value in a sequence
 * @param <T> type of sequence value
 */
public class JdbcSequencer<T> implements Sequencer<T>, InitializingBean {