|
|
@ -1,5 +1,5 @@
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Copyright 2012-2013 the original author or authors.
|
|
|
|
* Copyright 2012-2014 the original author or authors.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
@ -22,9 +22,14 @@ import java.lang.annotation.Retention;
|
|
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
import java.lang.annotation.Target;
|
|
|
|
import java.lang.annotation.Target;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.cli.compiler.autoconfigure.RabbitCompilerAutoConfiguration;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Pseudo annotation used to trigger {@link RabbitCompilerAutoConfiguration}.
|
|
|
|
|
|
|
|
*/
|
|
|
|
@Target(ElementType.TYPE)
|
|
|
|
@Target(ElementType.TYPE)
|
|
|
|
@Documented
|
|
|
|
@Documented
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
public @interface EnableRabbitMessaging {
|
|
|
|
public @interface EnableRabbitMessaging {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|