1
2
3
4
5
6 package gov.nist.secauto.metaschema.databind.model.annotations;
7
8 import static java.lang.annotation.ElementType.FIELD;
9 import static java.lang.annotation.ElementType.METHOD;
10 import static java.lang.annotation.RetentionPolicy.RUNTIME;
11
12 import java.lang.annotation.Documented;
13 import java.lang.annotation.Retention;
14 import java.lang.annotation.Target;
15
16
17
18
19
20
21
22
23
24 @Documented
25 @Retention(RUNTIME)
26 @Target({ FIELD, METHOD })
27 public @interface JsonFieldValueKeyFlag {
28
29 }