Example usage for org.springframework.beans.factory.config BeanFactoryPostProcessor interface-usage

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

Introduction

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

Usage

From source file org.bytesoft.bytejta.supports.spring.TransactionBeanFactoryPostProcessor.java

public class TransactionBeanFactoryPostProcessor implements BeanFactoryPostProcessor {

    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        ClassLoader cl = Thread.currentThread().getContextClassLoader();

        String beanFactoryBeanId = null;

From source file org.eclipse.gemini.blueprint.extender.internal.support.OsgiBeanFactoryPostProcessorAdapter.java

/**
 * Simple adapter for wrapping OsgiBeanPostProcessors to normal Spring post
 * processors.
 * 
 * @author Costin Leau
 * 

From source file org.openhie.openempi.dao.spring.HibernateExtensionPostProcessor.java

/**
 * <p>Adds Hibernate persistent class definitions to an existing Spring Session Factory bean, possibly defined
 * within a seperate Spring configuration file in a seperate jar file. By using this extension factory developers can
 * add persistent classes to an AppFuse application without modifying any of the existing AppFuse Spring configuration
 * or jar distribution files.
 * 

From source file org.springframework.cloud.gcp.storage.GoogleStorageProtocolResolver.java

/**
 * A {@link ProtocolResolver} implementation for the {@code gs://} protocol.
 *
 * @author Vinicius Carvalho
 * @author Artem Bilan
 * @author Mike Eltsufin

From source file org.seasar.dao.spring.autoregister.AbstractAutoRegister.java

public abstract class AbstractAutoRegister implements BeanFactoryAware, BeanFactoryPostProcessor {

    public static final String INIT_METHOD = "registerAll";

    private BeanFactory beanFactory;

From source file org.springframework.integration.context.ConversionServiceCreator.java

/**
 * @author Oleg Zhurakousky
 * @author Mark Fisher
 * @since 2.0
 */
class ConversionServiceCreator implements BeanFactoryPostProcessor {

From source file org.springframework.data.hadoop.fs.CustomResourceLoaderRegistrar.java

/**
 * Utility class that overrides the built-in {@link ResourceEditor} to allow
 * {@link HdfsResourceLoader} to be searched first. Also sets {@code ResourceLoader}
 * for the Application context.
 *
 * @author Costin Leau

From source file org.cloudfoundry.reconfiguration.spring.AbstractCloudServiceBeanFactoryPostProcessor.java

abstract class AbstractCloudServiceBeanFactoryPostProcessor implements BeanFactoryPostProcessor, Ordered {

    private final Logger logger = Logger.getLogger(this.getClass().getName());

    private final ApplicationContext applicationContext;

From source file org.vaadin.spring.internal.VaadinUIScope.java

import java.util.concurrent.ConcurrentHashMap;

/**
 * Implementation of Spring's {@link org.springframework.beans.factory.config.Scope} contract.
 * Registered by default as the scope {@code ui}.
 *

From source file com.vaadin.spring.internal.VaadinSessionScope.java

/**
 * Implementation of Spring's
 * {@link org.springframework.beans.factory.config.Scope} that binds the beans
 * to the current {@link com.vaadin.server.VaadinSession} (as opposed to the
 * current Servlet session). Registered by default as the scope "
 * {@value #VAADIN_SESSION_SCOPE_NAME}".