[3.1] refactored queues - removed manual bindings.
[pub/jan/dst18.git] / ass2-di / src / main / java / dst / ass2 / di / annotation / Component.java
1 package dst.ass2.di.annotation;
2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 @Retention(RetentionPolicy.RUNTIME)
9 @Target(ElementType.TYPE)
10 public @interface Component {
11     Scope scope();
12 }