1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 package webserver.nsapi;
29
30 import java.lang.annotation.
ElementType;
31 import java.lang.annotation.
Retention;
32 import java.lang.annotation.
RetentionPolicy;
33 import java.lang.annotation.
Target;
34
35
36
37
38
39 @Target({
ElementType.
METHOD})
40 @Retention(
RetentionPolicy.
RUNTIME)
41 public @interface SAF {
42 String name()
default "";
43 boolean init()
default false;
44 }
45