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 {
/**
* Annotation key for instance name.
*
* @deprecated since Cardinal
*/
@Deprecated
public static final String NAME = "name";
/**
......@@ -47,18 +44,12 @@ public final class AnnotationKeys {
/**
* Annotation key for latitude (e.g. latitude of device).
*
* @deprecated since Cardinal
*/
@Deprecated
public static final String LATITUDE = "latitude";
/**
* Annotation key for longitute (e.g. longitude of device).
*
* @deprecated since Cardinal
*/
@Deprecated
public static final String LONGITUDE = "longitude";
/**
......@@ -68,10 +59,7 @@ public final class AnnotationKeys {
/**
* Annotation key for the device driver name.
*
* @deprecated since Cardinal
*/
@Deprecated
public static final String DRIVER = "driver";
/**
......@@ -87,19 +75,13 @@ public final class AnnotationKeys {
/**
* Annotation key for latency.
*
* @deprecated since Cardinal
*/
@Deprecated
public static final String LATENCY = "latency";
/**
* Annotation key for bandwidth.
* The value for this key is interpreted as Mbps.
*
* @deprecated since Cardinal
*/
@Deprecated
public static final String BANDWIDTH = "bandwidth";
/**
......