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 prospring3.factorybean.MyFactoryBean.java

/**
 * ***********************************************************************
 * <p/>
 * <b>Copyright:</b>
 * 2011 1&1 Internet AG, Germany, http://www.1und1.de
 * <p/>

From source file com.baidu.stqa.signet.web.property.SystemLoad.java

/**
 * @author suhanyuan
 * @version 3.0.0.0
 */

public class SystemLoad implements InitializingBean {

From source file org.marketcetera.symbol.IterativeSymbolResolver.java

/**
 * Resolves symbols by managing a list of individual symbol resolvers.
 *
 * @author <a href="mailto:colin@marketcetera.com">Colin DuPlantis</a>
 * @version $Id$
 * @since $Release$

From source file ome.security.KeyAndTrustStoreConfiguration.java

/**
 * Calls {@link System#setProperty(String, String)} for the "javax.net.ssl"
 * properties needed to configure a trust store and a keystore for the Java
 * process.
 */
public class KeyAndTrustStoreConfiguration implements InitializingBean {

From source file com.home.ln_spring.ch5.factory.MessageDigestFactoryBean.java

/**
 *
 * @author vitaliy
 */
public class MessageDigestFactoryBean implements FactoryBean<MessageDigest>, InitializingBean {

From source file com.opengamma.language.debug.ProfilerBean.java

/**
 * Spring bean for configuring the debug profiler.
 */
public final class ProfilerBean implements InitializingBean {

    private long _outputPeriod = 60000L;

From source file com.opengamma.language.livedata.LiveDataProviderBean.java

/**
 * Produce a {@link LiveDataProvider} from a set of {@link PublishedLiveData} objects.
 */
public class LiveDataProviderBean extends AbstractLiveDataProvider implements InitializingBean {

    private Collection<PublishedLiveData> _liveData;

From source file o2.biz.KnightImpl.java

/**
 * Knight.javaTODO  
 * @author yangqi 2013-3-24 9:34:50
 */
public class KnightImpl implements Knight, InitializingBean {

From source file com.opengamma.language.procedure.ProcedureProviderBean.java

/**
 * Produce a {@link ProcedureProvider} from a set of {@link PublishedProcedure} objects.
 */
public class ProcedureProviderBean extends AbstractProcedureProvider implements InitializingBean {

    private Collection<PublishedProcedure> _procedures;

From source file com.home.ln_spring.ch5.lifecycle.DestructiveBean.java

/**
 *
 * @author vitaliy
 */
public class DestructiveBean implements InitializingBean {