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 com.agileapes.couteau.maven.mojo.SpringPluginConfigurator.java

/**
 * This bean should be used to enable the injection of the plugin executor into the requesting beans
 *
 * @author Mohammad Milad Naseri (m.m.naseri@gmail.com)
 * @since 1.0 (8/15/13, 1:23 PM)
 */

From source file org.netxilia.api.impl.value.GenericValueParseServiceImpl.java

public class GenericValueParseServiceImpl implements IGenericValueParseService, BeanPostProcessor {
    private final List<IGenericValueParser> parsers = new ArrayList<IGenericValueParser>();

    @Override
    public IGenericValue parse(String text) {
        if (text == null) {

From source file com.brienwheeler.web.spring.security.AuthenticationFilterConfigurer.java

public class AuthenticationFilterConfigurer implements BeanPostProcessor {
    private String filterName;
    private boolean postOnly = false;
    private String usernameParameter = "username";
    private String passwordParameter = "password";

From source file com.excilys.spring.mom.annotation.MOMAnnotationProcessing.java

/**
 * @author dvilleneuve
 * 
 */
@Component
public class MOMAnnotationProcessing implements BeanPostProcessor, Ordered {

From source file org.ff4j.spring.autowire.AutowiredFF4JBeanPostProcessor.java

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/**
 * When Proxified, analyze bean to eventually invoke ANOTHER implementation (flip up).

From source file com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor.java

/**
 * Dubbo Config Binding {@link BeanPostProcessor}
 *
 * @see EnableDubboConfigBinding
 * @see DubboConfigBindingRegistrar
 * @since 2.5.8

From source file org.trustedanalytics.metadata.parser.AuthenticationDisabler.java

public class AuthenticationDisabler implements BeanPostProcessor {
    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {

        final String AUTHENTICATION_BEAN_TO_REPLACE = "OAuth2AuthenticationProcessingFilter";

From source file org.simbasecurity.core.event.EventService.java

@Service
public class EventService implements MessageListener, BeanPostProcessor {

    private static final org.slf4j.Logger LOG = LoggerFactory.getLogger(EventService.class);

    @Autowired

From source file my.adam.smo.common.LoggerInjector.java

/**
 * works only with beans annotated as @Component does NOT work wit
 *
 * @Configuration and @Bean
 */
@Component

From source file tk.skuro.spring.processor.ObservablePostProcessor.java

/**
 * Automatically registers instances of
 * @author Carlo Sciolla
 * @added 2013-03-09
 */
@Component