1 | |
package org.jbehave.core.annotations.weld; |
2 | |
|
3 | |
import java.lang.annotation.Inherited; |
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 | |
import static java.lang.annotation.ElementType.FIELD; |
11 | |
import static java.lang.annotation.ElementType.METHOD; |
12 | |
import static java.lang.annotation.ElementType.PARAMETER; |
13 | |
import static java.lang.annotation.ElementType.TYPE; |
14 | |
|
15 | |
@Retention(RetentionPolicy.RUNTIME) |
16 | |
@Target({ TYPE, METHOD, PARAMETER, FIELD }) |
17 | |
@Inherited |
18 | |
@Qualifier |
19 | |
public @interface WeldStep { |
20 | |
|
21 | |
} |