Example usage for org.springframework.context.annotation ImportBeanDefinitionRegistrar interface-usage

List of usage examples for org.springframework.context.annotation ImportBeanDefinitionRegistrar interface-usage

Introduction

In this page you can find the example usage for org.springframework.context.annotation ImportBeanDefinitionRegistrar interface-usage.

Usage

From source file at.porscheinformatik.common.spring.web.extended.config.SpringWebExtendedRegistrar.java

public class SpringWebExtendedRegistrar implements ImportBeanDefinitionRegistrar {

    private static final String TEMPLATECONTROLLER_KEY = "htmlTemplateControllerConfig";
    private static final String TEMPLATECONTROLLERREGISTER_KEY = "registerHtmlTemplateController";
    private static final String TEMPLATECONTROLLERFALLBACK_KEY = "fallbackToIndex";
    private static final String ASSETCONTROLLER_KEY = "registerAssetController";

From source file org.springframework.integration.config.PublisherRegistrar.java

/**
 * @author Artem Bilan
 * @author Gary Russell
 * @since 4.0
 */
public class PublisherRegistrar implements ImportBeanDefinitionRegistrar {

From source file org.zalando.spring.data.businesskey.config.BusinessKeyBeanDefinitionRegistrarSupport.java

/**
 * @author  jbellmann
 */
public abstract class BusinessKeyBeanDefinitionRegistrarSupport implements ImportBeanDefinitionRegistrar {

    // private static final String BUSINESSKEY_AWARE = "businessKeyAware";

From source file ductive.console.config.SshServerBeanRegistrar.java

public class SshServerBeanRegistrar implements ImportBeanDefinitionRegistrar {

    private static final String SSH_SERVER_FACTORY_BEAN_NAME = "sshServer";
    private static final String STANDARD_PROMPT_PROVIDER_BEAN_NAME = "standardPromptProvider";

    @Override

From source file org.wallride.autoconfigure.WebAdminComponentScanRegistrar.java

public class WebAdminComponentScanRegistrar implements ImportBeanDefinitionRegistrar {

    private static final String BEAN_NAME = "webAdminComponentScanBeanPostProcessor";

    @Override
    public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata,

From source file org.wallride.autoconfigure.WebGuestComponentScanRegistrar.java

public class WebGuestComponentScanRegistrar implements ImportBeanDefinitionRegistrar {

    private static final String BEAN_NAME = "webGuestComponentScanBeanPostProcessor";

    @Override
    public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata,

From source file org.spring.guice.annotation.GuiceModuleRegistrar.java

/**
 * @author Dave Syer
 *
 */
public class GuiceModuleRegistrar implements ImportBeanDefinitionRegistrar, ResourceLoaderAware {

From source file org.zalando.spring.data.businesskey.jpa.config.JpaBusinessKeyRegistrar.java

/**
 * I was confused by the Regstrar for Auditing.
 *
 * @author  jbellmann
 */
public class JpaBusinessKeyRegistrar implements ImportBeanDefinitionRegistrar {

From source file org.springframework.boot.autoconfigure.ComponentScanDetector.java

/**
 * Helper to detect a component scan declared in the enclosing context (normally on a
 * {@code @Configuration} class). Once the component scan is detected, the base packages
 * are stored for retrieval later.
 * 
 * @author Dave Syer

From source file org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.java

/**
 * Base {@link ImportBeanDefinitionRegistrar} used to auto-configure Spring Data
 * Repositories.
 * 
 * @author Phillip Webb
 * @author Dave Syer