We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d90be71 commit d3ef43bCopy full SHA for d3ef43b
Exercise/src/main/java/org/beginningee6/tutorial/NormalOrder.java
@@ -0,0 +1,22 @@
1
+package org.beginningee6.tutorial;
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
+import javax.inject.Qualifier;
9
10
+/**
11
+ * @author Antonio Goncalves & Alexis Moussine-Pouchkine
12
+ * Tutorial - Beginning with The Java EE 6 Platform
13
+ * http://www.antoniogoncalves.org
14
+ * http://blogs.sun.com/alexismp
15
+ * --
16
+ * A CDI Qualifier annotation
17
+ */
18
+@Qualifier
19
+@Target({ElementType.FIELD,ElementType.PARAMETER})
20
+@Retention(RetentionPolicy.RUNTIME)
21
+public @interface NormalOrder {}
22
0 commit comments