Rename packages from openecomp to onap.
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-api / src / main / java / org / onap / config / api / Config.java
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() default "";
21 }