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

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

Introduction

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

Usage

From source file com.github.mushkevych.genfabeto.BeanBFactoryBean.java

/**
 * @author Doug Bateman
 * see LICENSE file for licensing details
 */
public class BeanBFactoryBean implements FactoryBean<BeanB> {

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.att.archive.restful.query.SolrQueryFactoryBean.java

/**
 * TODO 
 * @author ebrimatunkara
 */
public class SolrQueryFactoryBean implements FactoryBean<SolrQueryHandler> {

From source file com.hp.autonomy.frontend.find.core.configuration.TextEncryptorPasswordFactory.java

/**
 * Generates the password for encrypting the PostgresPassword
 */
public class TextEncryptorPasswordFactory implements FactoryBean<String> {

    // exception declared in external interface

From source file com.bstek.bdf2.core.orm.DataSourceFactory.java

/**
 * ????????.
 * @author jacky.gao@bstek.com
 * @since 2.0
 */
public class DataSourceFactory implements FactoryBean<DataSource> {

From source file com.hp.autonomy.frontend.testing.mock.MocksFactory.java

/**
 * {@link FactoryBean} for creating Mockito mock objects. This is useful if you're using a test application context
 * written in XML.
 * <p/>
 * If your test context uses Java configuration, there is no need to use this method.
 */

From source file gov.nih.nci.cabig.ctms.tools.spring.HibernatePropertiesFactoryBean.java

/**
 * Creates Hibernate properties safely when the hibernate.dialect property
 * (determined at runtime) could be null.
 *
 * @author Rhett Sutphin
 */

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

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

From source file com.t163.http.client.ObjectMapperFactoryBean.java

/**
 * nhn t-163-api
 * com.t163.http.client.ObjectMapperFactoryBean.java
 * @author st13902
 * @date 20131217
 */

From source file com.alibaba.dragoon.stat.KVStatManagerFactoryBean.java

public class KVStatManagerFactoryBean implements FactoryBean {

    public Object getObject() throws Exception {
        return KVStatManager.getInstance();
    }