Simon Hunt
Committed by Gerrit Code Review

Reverted constant accessors to be public again.

Change-Id: Iaae04eb4157350d7a16e7998eb3ed64082d158bd
...@@ -28,11 +28,11 @@ import static org.onosproject.net.config.Config.FieldPresence.OPTIONAL; ...@@ -28,11 +28,11 @@ import static org.onosproject.net.config.Config.FieldPresence.OPTIONAL;
28 */ 28 */
29 public final class BasicLinkConfig extends AllowedEntityConfig<LinkKey> { 29 public final class BasicLinkConfig extends AllowedEntityConfig<LinkKey> {
30 30
31 - private static final String TYPE = "type"; 31 + public static final String TYPE = "type";
32 - private static final String METRIC = "metric"; 32 + public static final String METRIC = "metric";
33 - private static final String LATENCY = "latency"; 33 + public static final String LATENCY = "latency";
34 - private static final String BANDWIDTH = "bandwidth"; 34 + public static final String BANDWIDTH = "bandwidth";
35 - private static final String IS_DURABLE = "durable"; 35 + public static final String IS_DURABLE = "durable";
36 36
37 @Override 37 @Override
38 public boolean isValid() { 38 public boolean isValid() {
......