1 package de.tivsource.ejb3plugin;
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
9
10
11
12
13
14 @Retention(RetentionPolicy.RUNTIME)
15 @Target({ ElementType.FIELD })
16 public @interface InjectEJB {
17
18
19
20
21
22 String name();
23
24
25
26
27
28 String appname() default "";
29
30
31
32
33
34 boolean local() default true;
35
36
37
38
39
40 boolean remote() default false;
41
42 }