406f45af924e3c23c08cc3426b65d77ac217c0de
[sdc.git] /
1 package org.onap.config.api;
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  * The interface Config.
10  */
11 @Target({ElementType.TYPE, ElementType.FIELD})
12 @Retention(RetentionPolicy.RUNTIME)
13 public @interface Config {
14
15     /**
16      * Key string.
17      *
18      * @return the string
19      */
20     String key();
21 }