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.gwtplatform.dispatch.server.spring.LoggerFactoryBean.java

/**
 * @deprecated Please use {@link com.gwtplatform.dispatch.rpc.server.spring.LoggerFactoryBean}.
 */
@Deprecated
public class LoggerFactoryBean implements FactoryBean<Logger> {

From source file griffon.spring.factory.support.GriffonApplicationFactoryBean.java

/**
 * @author Andres Almiray
 */
public class GriffonApplicationFactoryBean implements FactoryBean {
    private GriffonApplication application;

From source file com.ideabase.repository.core.index.bean.FileBean.java

/**
 * @author <a href="http://hasan.we4tech.com">nhm tanveer...(hasan)</a>
 */
public class FileBean implements org.springframework.beans.factory.FactoryBean {

    private File mFile;

From source file org.globus.security.authorization.xml.AuthorizationEngineFactory.java

/**
 * Created by IntelliJ IDEA.
 * User: turtlebender
 * Date: Jan 26, 2010
 * Time: 1:01:33 PM
 * To change this template use File | Settings | File Templates.

From source file net.sf.webphotos.util.UtilFactoryBean.java

/**
 *
 * @author Guilherme
 */
public class UtilFactoryBean implements FactoryBean {

From source file gov.nih.nci.cabig.caaers.tools.JndiDataSourceFactoryBean.java

/**
 * @author Rhett Sutphin
 */
public class JndiDataSourceFactoryBean extends DatabaseConfigurationAccessor implements FactoryBean {
    private static final Log log = LogFactory.getLog(JndiDataSourceFactoryBean.class);

From source file ch.ralscha.extdirectspring_itest.FactoryBeanReturnsObjectTypeNull.java

@Component
public class FactoryBeanReturnsObjectTypeNull implements FactoryBean<Info> {

    @Override
    public Info getObject() throws Exception {
        return new Info();

From source file at.molindo.notify.util.AbstractListFactory.java

abstract class AbstractListFactory<T> implements FactoryBean<List<T>> {

    private final List<T> _list = new CopyOnWriteArrayList<T>();

    protected void set(List<T> collection) {
        _list.clear();

From source file org.mule.config.spring.factories.AbstractEndpointFactoryBean.java

/**
 * Abstract spring FactoryBean used to creating endpoints via spring.
 */
public abstract class AbstractEndpointFactoryBean extends EndpointURIEndpointBuilder
        implements FactoryBean, Initialisable {

From source file com.springsource.greenhouse.activity.badge.BadgeSystemFactoryBean.java

/**
 * Factory that configures the BadgeSystem and returns it as a Bean that can be invoked by the integration-activity.xml pipeline.
 * Registers the various badge award rules.
 * @author Keith Donald
 */
public class BadgeSystemFactoryBean implements FactoryBean<BadgeSystem> {