HIGUCHI Yuta
Committed by Gerrit Code Review

Remove @Deprecated from Annotation keys used by netcfg

- These annotations get added when a value is configured by netcfg subsystem.

Change-Id: Ie52f4827628051f61df9b297001c46db4915e91c
...@@ -31,10 +31,7 @@ public final class AnnotationKeys { ...@@ -31,10 +31,7 @@ public final class AnnotationKeys {
31 31
32 /** 32 /**
33 * Annotation key for instance name. 33 * Annotation key for instance name.
34 - *
35 - * @deprecated since Cardinal
36 */ 34 */
37 - @Deprecated
38 public static final String NAME = "name"; 35 public static final String NAME = "name";
39 36
40 /** 37 /**
...@@ -47,18 +44,12 @@ public final class AnnotationKeys { ...@@ -47,18 +44,12 @@ public final class AnnotationKeys {
47 44
48 /** 45 /**
49 * Annotation key for latitude (e.g. latitude of device). 46 * Annotation key for latitude (e.g. latitude of device).
50 - *
51 - * @deprecated since Cardinal
52 */ 47 */
53 - @Deprecated
54 public static final String LATITUDE = "latitude"; 48 public static final String LATITUDE = "latitude";
55 49
56 /** 50 /**
57 * Annotation key for longitute (e.g. longitude of device). 51 * Annotation key for longitute (e.g. longitude of device).
58 - *
59 - * @deprecated since Cardinal
60 */ 52 */
61 - @Deprecated
62 public static final String LONGITUDE = "longitude"; 53 public static final String LONGITUDE = "longitude";
63 54
64 /** 55 /**
...@@ -68,10 +59,7 @@ public final class AnnotationKeys { ...@@ -68,10 +59,7 @@ public final class AnnotationKeys {
68 59
69 /** 60 /**
70 * Annotation key for the device driver name. 61 * Annotation key for the device driver name.
71 - *
72 - * @deprecated since Cardinal
73 */ 62 */
74 - @Deprecated
75 public static final String DRIVER = "driver"; 63 public static final String DRIVER = "driver";
76 64
77 /** 65 /**
...@@ -87,19 +75,13 @@ public final class AnnotationKeys { ...@@ -87,19 +75,13 @@ public final class AnnotationKeys {
87 75
88 /** 76 /**
89 * Annotation key for latency. 77 * Annotation key for latency.
90 - *
91 - * @deprecated since Cardinal
92 */ 78 */
93 - @Deprecated
94 public static final String LATENCY = "latency"; 79 public static final String LATENCY = "latency";
95 80
96 /** 81 /**
97 * Annotation key for bandwidth. 82 * Annotation key for bandwidth.
98 * The value for this key is interpreted as Mbps. 83 * The value for this key is interpreted as Mbps.
99 - *
100 - * @deprecated since Cardinal
101 */ 84 */
102 - @Deprecated
103 public static final String BANDWIDTH = "bandwidth"; 85 public static final String BANDWIDTH = "bandwidth";
104 86
105 /** 87 /**
......