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

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

Introduction

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

Usage

From source file org.vertx.mods.spring.VertxAwareBeanPostProcessor.java

/**
 * @author swilliams
 * @since 1.0
 */
public class VertxAwareBeanPostProcessor implements BeanPostProcessor {

From source file prospring3.ch5.beanpostprocessor.DeassociateBeanPostProcessor.java

/**
 * ***********************************************************************
 * <p/>
 * Copyright:
 * 2012 1&1 Internet AG, Germany, http://www.1und1.de
 * <p/>

From source file org.jtheque.primary.utils.choice.ChoiceActionsPostProcessor.java

/**
 * A bean post processor to register all the resources of a module in the application context. This post processor add
 * automatically state bar components to state bar.
 *
 * @author Baptiste Wicht
 */

From source file org.trustedanalytics.user.invite.SecurityDisabler.java

public class SecurityDisabler implements BeanPostProcessor {

    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {

        if (beanName.contains("BasicAuthenticationFilter")) {

From source file com.example.session.app.config.EnableSynchronizeOnSessionPostProcessor.java

public class EnableSynchronizeOnSessionPostProcessor implements BeanPostProcessor {

    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
        return bean;
    }

From source file uk.org.iay.mdq.server.MVCConfigurationPostProcessor.java

/**
 * Spring's default behavior is to decode the URL passed to it by the
 * container, and then parse the path into components on "/" characters.
 * This means you can't use URL-encoded "/" characters (%2f) within
 * identifiers.
 * 

From source file my.school.spring.beans.DataProviderPostProcessor.java

/**
 *
 * @author skrymets
 */
@Component
public class DataProviderPostProcessor implements BeanPostProcessor {

From source file net.bioclipse.structuredb.internalbusiness.SQLMapPathBeanPostProcessor.java

/**
 * This bean changes the config location for the sqlMapClient bean. 
 * This is needed since the sqlMapClient bean seems to look at the wrong 
 * location by default.
 *
 * @author jonalv

From source file com.payu.ratel.event.EventSubscriberPostProcessor.java

public class EventSubscriberPostProcessor implements BeanPostProcessor {

    private static final Logger LOGGER = LoggerFactory.getLogger(EventSubscriberPostProcessor.class);

    @Autowired
    private EventListener eventListener;

From source file org.piraso.server.ContextLoggerBeanProcessor.java

/**
 * Defines an interface for context logger bean processor.
 */
public interface ContextLoggerBeanProcessor<T> extends BeanPostProcessor, PriorityOrdered {

    /**