Skip to content

Commit d3ef43b

Browse files
author
yblazart
committed
Ajout de normalOrder pour contre balancer ImportantOrder
1 parent d90be71 commit d3ef43b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)