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.constretto.spring.EnvironmentAnnotationConfigurer.java

/**
 * A BeanFactoryBeanFactoryPostProcessor implementation that will if registered as a bean in a spring context, enable
 * the constretto autowiring capabilities in the container.
 * <p/>
 * <p/>
 * May be used on any existing configurations and in combination with all the standard context implementations from the

From source file org.apache.james.container.spring.bean.factorypostprocessor.QuotaBeanFactoryPostProcessor.java

public class QuotaBeanFactoryPostProcessor implements BeanFactoryPostProcessor {

    private static final String IN_MEMORY = "inmemory";
    private static final String CASSANDRA = "cassandra";
    private static final String FAKE = "fake";
    private static final String MAX_QUOTA_MANAGER = "maxQuotaManager";

From source file org.openspaces.core.context.GigaSpaceLateContextBeanFactoryPostProcessor.java

/**
 * @author kimchy
 */
public class GigaSpaceLateContextBeanFactoryPostProcessor
        implements BeanFactoryPostProcessor, ApplicationContextAware {

From source file org.jfaster.mango.plugin.spring.MangoDaoScanner.java

/**
 * @author ash
 */
final public class MangoDaoScanner implements BeanFactoryPostProcessor {

    private final static InternalLogger logger = InternalLoggerFactory.getInstance(MangoDaoScanner.class);

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

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

From source file com.mmnaseri.dragonfly.runtime.repo.impl.CrudRepositoryContext.java

/**
 * @author Milad Naseri (mmnaseri@programmer.net)
 * @since 1.0 (14/8/14 AD, 12:23)
 */
public class CrudRepositoryContext implements BeanFactoryPostProcessor, Ordered {

From source file com.mmnaseri.couteau.context.spring.SpringContextConfigurator.java

/**
 * <p>This class allows for configuring a Couteau context into a Spring context. The method to do this
 * is to first include this class as a bean inside a Spring application context and then fetch the
 * instance and ask the configurator to configure the context for you by calling to {@link #configure(Context)}</p>
 *
 * @see SpringConfigurableContext

From source file com.agileapes.couteau.context.spring.SpringContextConfigurator.java

/**
 * <p>This class allows for configuring a Couteau context into a Spring context. The method to do this
 * is to first include this class as a bean inside a Spring application context and then fetch the
 * instance and ask the configurator to configure the context for you by calling to {@link #configure(Context)}</p>
 *
 * @see SpringConfigurableContext

From source file com.smartitengineering.util.bean.spring.PropertiesLocatorConfigurer.java

/**
 * This class will mainly search for a designated properties file at locations
 * predefined by system (that is this module) and user through app context. <p />
 * Preconfigured locations according to ascending priority is -
 * <ul>
 *  <li>System properties (if enabled)</li>

From source file org.springframework.flex.hibernate3.config.HibernateSerializationConfigPostProcessor.java

/**
 * {@link BeanFactoryPostProcessor} that will automatically configure Hibernate AMF serialization support if:
 * <ol>
 *     <li>Hibernate is detected on the classpath</li>
 *     <li>An instance of {@link HibernateConfigProcessor} has not been manually configured.
 * </ol>