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 org.seedstack.spring.internal.SeedInstanceFactoryBean.java

class SeedInstanceFactoryBean implements FactoryBean<Object> {
    // using Guice annotation to prevent Spring from complaining
    @Inject
    private static Injector injector;
    private String classname;
    private String qualifier;

From source file org.trpr.platform.servicefw.jetty.JettyWebAppContextFactory.java

/**
 * The Spring factory bean for creating the Jetty WebAppContext using resources found on the classpath
 * 
 * @author Devashish Shankar
 * @version 1.0, 26/02/2013
 * 

From source file org.craftercms.core.cache.impl.store.SwitchableCacheStoreAdapterFactoryBean.java

/**
 * {@link FactoryBean} that returns a different {@link org.craftercms.core.cache.impl.CacheStoreAdapter} depending on
 * the value of a flag property
 * that indicates if caching should be turned on or off.
 *
 * @author Alfonso Vsquez

From source file org.jdal.remoting.caucho.HessianProxyFactoryBean.java

/**
 * Hessian ProxyFactoryBean
 * 
 * @author Jose Luis Martin - (jlm@joseluismartin.info)
 */
public class HessianProxyFactoryBean extends HessianClientInterceptor implements FactoryBean<Object>, RemoteClient {

From source file org.springmodules.cache.guava.GuavaCacheFactoryBean.java

/**
 * {@link FactoryBean} for easy configuration of a {@link GuavaCache}.
 * @author Omar Irbouh
 * @since 1.0
 */
public class GuavaCacheFactoryBean implements FactoryBean<GuavaCache>, BeanNameAware, InitializingBean {

From source file org.trpr.platform.batch.impl.jetty.JettyWebAppContextFactory.java

/**
 * The Spring factory bean for creating the Jetty WebAppContext using resources found on the classpath
 * 
 * @author Regunath B
 * @version 1.0, 28/11/2012
 * 

From source file org.springside.modules.security.springsecurity.DefinitionSourceFactoryBean.java

/**
 * DefinitionSource.
 * 
 * resourceDetailService??URL-?,
 * ??LinkedHashMap<String, String>?URL??
 * SpringSecurityLinkedHashMap<RequestKey, ConfigAttributeDefinition>?.

From source file com.flipkart.aesop.elasticsearchdatalayer.upsert.ElasticSearchUpsertDataLayerFactory.java

/**
 * Generates objects of {@link ElasticSearchUpsertDataLayer } and ensures that it is singleton.
 * @author Pratyay Banerjee
 */
public class ElasticSearchUpsertDataLayerFactory implements FactoryBean<ElasticSearchUpsertDataLayer> {
    /* Data Layer Client */

From source file org.vaadin.spring.http.HttpResponseFactory.java

/**
 * Factory to provide access to the {@link HttpServletResponse}
 * 
 * @author Marko Radinovic (markoradinovic79@gmail.com)
 * @author Gert-Jan Timmer (gjr.timmer@gmail.com)
 * @see <a href="https://github.com/markoradinovic/Vaadin4Spring-MVP-Sample-SpringSecurity">Original code</a>

From source file net.projectmonkey.spring.acl.factory.DefaultAclAuthorizationStrategyFactoryBean.java

/**
 * Factory bean allowing configuration of an {@link AclAuthorizationStrategyImpl}
 * using simple String constructor args representing the required authorities. 
 * 
 * @author Andy Moody
 */