All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mydao.eventbus.spring.support.EventBusConfigurationSelector Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.mydao.eventbus.spring.support;

import org.springframework.context.annotation.DeferredImportSelector;
import org.springframework.core.type.AnnotationMetadata;

/**
 * @see com.mydao.eventbus.spring.annotation.EnableEventBus
 * @author : ahoo wang
 */
public class EventBusConfigurationSelector implements DeferredImportSelector {
    @Override
    public String[] selectImports(AnnotationMetadata importingClassMetadata) {
        return new String[]
                {
                        EventBusBootstrapConfiguration.class.getName()
                };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy