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 yangqi.spring3.KnightImpl.java

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

From source file in.sc.dao.DAOUtils.java

/**
 *
 * @author PRASAD
 */
@Component
public class DAOUtils implements InitializingBean {

From source file com.opengamma.language.function.FunctionProviderBean.java

/**
 * Produce a {@link FunctionProvider} from a set of {@link PublishedFunction} objects.
 */
public class FunctionProviderBean extends AbstractFunctionProvider implements InitializingBean {

    private Collection<PublishedFunction> _functions;

From source file com.ebay.pulsar.collector.udf.DeviceEnrichmentUtil.java

public class DeviceEnrichmentUtil implements InitializingBean {

    private UserAgentStringParser parser;

    private static final DeviceEnrichmentUtil INSTANCE = new DeviceEnrichmentUtil();

From source file org.springsprout.realtime.streamhub.StreamhubServerFactory.java

public class StreamhubServerFactory implements InitializingBean, DisposableBean, FactoryBean<PushServer> {

    private InetSocketAddress address;
    private InetSocketAddress streamingAdapterAddress;
    private URL licenseUrl;
    private URL log4jConfigurationUrl;

From source file com.ewcms.common.query.jpa.QueryFactoryBean.java

public class QueryFactoryBean implements FactoryBean<QueryFactory>, InitializingBean {

    private EntityManagerFactory entityManagerFactory;
    private ResultCacheable cache;

    private QueryFactory queryFactory;

From source file org.seansawyer.chaturanga.model.dao.DAOProviderImpl.java

/**
 * Implementation of {@link DAOProvider} as a Spring {@link InitializingBean}
 * 
 * @author  Sean Sawyer
 * @version $Id: $
 * @since   0.1

From source file com.sshdemo.common.query.jpa.QueryFactoryBean.java

public class QueryFactoryBean implements FactoryBean<QueryFactory>, InitializingBean {

    private EntityManagerFactory entityManagerFactory;

    private ResultCacheable cache;

From source file org.seansawyer.chaturanga.model.service.ServiceProviderImpl.java

/**
 * Implementation of {@link ServiceProvider} as a Spring {@link InitializingBean}
 * 
 * @author  Sean Sawyer
 * @version $Id: $
 * @since   5.0

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

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