aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/core/api/src/main/java/org/onosproject/net/AnnotationKeys.java
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/core/api/src/main/java/org/onosproject/net/AnnotationKeys.java')
-rw-r--r--framework/src/onos/core/api/src/main/java/org/onosproject/net/AnnotationKeys.java145
1 files changed, 145 insertions, 0 deletions
diff --git a/framework/src/onos/core/api/src/main/java/org/onosproject/net/AnnotationKeys.java b/framework/src/onos/core/api/src/main/java/org/onosproject/net/AnnotationKeys.java
new file mode 100644
index 00000000..4949bc40
--- /dev/null
+++ b/framework/src/onos/core/api/src/main/java/org/onosproject/net/AnnotationKeys.java
@@ -0,0 +1,145 @@
+/*
+ * Copyright 2014-2015 Open Networking Laboratory
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.onosproject.net;
+
+/**
+ * Collection of keys for annotation.
+ * <p>
+ * Number of the annotation keys have been deprecated as the use of annotations
+ * is being phased out and instead network configuration subsystem is being
+ * phased-in for majority of model meta-data.
+ * </p>
+ */
+public final class AnnotationKeys {
+
+ // Prohibit instantiation
+ private AnnotationKeys() {}
+
+ /**
+ * Annotation key for instance name.
+ *
+ * @deprecated since Cardinal
+ */
+ @Deprecated
+ public static final String NAME = "name";
+
+ /**
+ * Annotation key for instance type (e.g. host type).
+ *
+ * @deprecated since Cardinal
+ */
+ @Deprecated
+ public static final String TYPE = "type";
+
+ /**
+ * 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";
+
+ /**
+ * Annotation key for southbound protocol.
+ */
+ public static final String PROTOCOL = "protocol";
+
+ /**
+ * Annotation key for the device driver name.
+ *
+ * @deprecated since Cardinal
+ */
+ @Deprecated
+ public static final String DRIVER = "driver";
+
+ /**
+ * Annotation key for durable links.
+ */
+ public static final String DURABLE = "durable";
+
+ /**
+ * 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";
+
+ /**
+ * Annotation key for the number of optical waves.
+ */
+ public static final String OPTICAL_WAVES = "optical.waves";
+
+ /**
+ * Annotation key for the port name.
+ */
+ public static final String PORT_NAME = "portName";
+
+ /**
+ * Annotation key for the router ID.
+ */
+ public static final String ROUTER_ID = "routerId";
+
+ public static final String STATIC_LAMBDA = "staticLambda";
+
+ public static final String STATIC_PORT = "staticPort";
+
+ /**
+ * Annotation key for device location.
+ */
+ public static final String RACK_ADDRESS = "rackAddress";
+
+ /**
+ * Annotation key for device owner.
+ */
+ public static final String OWNER = "owner";
+
+ /**
+ * Returns the value annotated object for the specified annotation key.
+ * The annotated value is expected to be String that can be parsed as double.
+ * If parsing fails, the returned value will be 1.0.
+ *
+ * @param annotated annotated object whose annotated value is obtained
+ * @param key key of annotation
+ * @return double value of annotated object for the specified key
+ */
+ public static double getAnnotatedValue(Annotated annotated, String key) {
+ double value;
+ try {
+ value = Double.parseDouble(annotated.annotations().value(key));
+ } catch (NumberFormatException e) {
+ value = 1.0;
+ }
+ return value;
+ }
+}