Example usage for org.springframework.beans.factory.support BeanDefinitionRegistryPostProcessor interface-usage

List of usage examples for org.springframework.beans.factory.support BeanDefinitionRegistryPostProcessor interface-usage

Introduction

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

Usage

From source file grails.plugin.cache.CacheBeanPostProcessor.java

/**
 * Changes the bean class of the org.springframework.cache.annotation.AnnotationCacheOperationSource#0
 * bean to a custom subclass.
 *
 * @author Burt Beckwith
 */

From source file org.springframework.security.config.debug.SecurityDebugBeanFactoryPostProcessor.java

/**
 * @author Luke Taylor
 * @author Rob Winch
 */
public class SecurityDebugBeanFactoryPostProcessor implements BeanDefinitionRegistryPostProcessor {
    private final Log logger = LogFactory.getLog(getClass());

From source file org.beangle.spring.bind.AutoConfigProcessor.java

public class AutoConfigProcessor implements BeanDefinitionRegistryPostProcessor {
    private static final Logger logger = LoggerFactory.getLogger(AutoConfigProcessor.class);

    protected Map<String, BeanDefinition> newBeanDefinitions = CollectUtils.newHashMap();

    protected BindRegistry bindRegistry;

From source file com.epam.ta.reportportal.auth.PermissionsRegisterBean.java

public class PermissionsRegisterBean implements BeanDefinitionRegistryPostProcessor {

    @SuppressWarnings("unchecked")
    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {

From source file gr.abiss.calipso.fs.FilePersistenceConfigPostProcessor.java

public class FilePersistenceConfigPostProcessor implements BeanDefinitionRegistryPostProcessor {

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

    @Value("${fs.FilePersistenceService}")
    private String repositoryClassName;

From source file minium.script.js.JsVariablePostProcessor.java

public class JsVariablePostProcessor implements BeanDefinitionRegistryPostProcessor, BeanFactoryAware {

    private Map<String, MultiValueMap<String, Object>> variables = Maps.newHashMap();
    private BeanFactory beanFactory;

    @Override

From source file com.vaadin.spring.VaadinConfiguration.java

/**
 * Spring configuration for registering the custom Vaadin scopes, the
 * {@link SpringViewProvider view provider} and some other stuff.
 *
 * Instead of using this class directly, it is recommended to add the
 * {@link EnableVaadin} annotation to a configuration class to automatically

From source file de.acosix.alfresco.mtsupport.repo.beans.TenantPropertyMapEmitter.java

/**
 * Instances of this class may be used to dynamically emit maps of property values keyed by tenant domains. This is typically useful to fill
 * {@link Map}-based bean properties of global beans that handle tenant-specific checks internally.
 *
 * @author Axel Faust, <a href="http://acosix.de">Acosix GmbH</a>
 */

From source file com.github.philippn.springremotingautoconfigure.server.annotation.HttpInvokerServiceExporterRegistrar.java

/**
 * @author Philipp Nanz
 */
@Configuration
public class HttpInvokerServiceExporterRegistrar implements BeanDefinitionRegistryPostProcessor {

From source file org.metaeffekt.dcc.commons.spring.xml.CapabilityInheritanceBeanDefinitionPostProcessor.java

/**
 * BeanDefinitionPostProcessor which processes all {@link CapabilityDefinitionReference}s and enhances the
 * attribute key list of the respective {@link CapabilityDefinition}.
 *
 * @author Jochen K.
 */