blob: 8427d76caf5c5fe45e5f9803e10c43ff9031345c [file] [log] [blame]
Sho SHIMIZUfe129db2014-11-11 14:24:51 -08001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Sho SHIMIZUfe129db2014-11-11 14:24:51 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net;
Sho SHIMIZUfe129db2014-11-11 14:24:51 -080017
18/**
19 * Collection of keys for annotation.
20 * Definitions of annotation keys needs to be here to avoid scattering.
21 */
22public final class AnnotationKeys {
23
24 // Prohibit instantiation
25 private AnnotationKeys() {}
26
27 /**
Sho SHIMIZUf5c3a2e2014-12-02 14:49:39 -080028 * Annotation key for instance name.
29 */
30 public static final String NAME = "name";
31
32 /**
33 * Annotation key for instance type (e.g. host type).
34 */
35 public static final String TYPE = "type";
36
37 /**
38 * Annotation key for latitude (e.g. latitude of device).
39 */
40 public static final String LATITUDE = "latitude";
41
42 /**
43 * Annotation key for longitute (e.g. longitude of device).
44 */
45 public static final String LONGITUDE = "longitude";
46
47 /**
48 * Annotation key for southbound protocol.
49 */
50 public static final String PROTOCOL = "protocol";
51
52 /**
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070053 * Annotation key for the device driver name.
54 */
55 public static final String DRIVER = "driver";
56
57 /**
Thomas Vachuska57126fe2014-11-11 17:13:24 -080058 * Annotation key for durable links.
59 */
60 public static final String DURABLE = "durable";
61
62 /**
Sho SHIMIZUfe129db2014-11-11 14:24:51 -080063 * Annotation key for latency.
64 */
65 public static final String LATENCY = "latency";
Sho SHIMIZU97a64cd2014-11-11 16:31:21 -080066
67 /**
Toshio Koide4b6562b2014-11-13 17:20:47 -080068 * Annotation key for bandwidth.
Sho SHIMIZU0ce220a2015-01-23 15:54:47 -080069 * The value for this key is interpreted as Mbps.
Toshio Koide4b6562b2014-11-13 17:20:47 -080070 */
71 public static final String BANDWIDTH = "bandwidth";
72
73 /**
74 * Annotation key for the number of optical waves.
75 */
76 public static final String OPTICAL_WAVES = "optical.waves";
77
78 /**
Thomas Vachuskab52a0142015-04-21 17:48:15 -070079 * Annotation key for the port name.
80 */
81 public static final String PORT_NAME = "portName";
82
Simon Huntab1305242015-05-06 18:07:13 -070083 /**
84 * Annotation key for the router ID.
85 */
86 public static final String ROUTER_ID = "routerId";
Thomas Vachuskab52a0142015-04-21 17:48:15 -070087
88 /**
Sho SHIMIZU97a64cd2014-11-11 16:31:21 -080089 * Returns the value annotated object for the specified annotation key.
90 * The annotated value is expected to be String that can be parsed as double.
91 * If parsing fails, the returned value will be 1.0.
92 *
93 * @param annotated annotated object whose annotated value is obtained
94 * @param key key of annotation
95 * @return double value of annotated object for the specified key
96 */
97 public static double getAnnotatedValue(Annotated annotated, String key) {
98 double value;
99 try {
100 value = Double.parseDouble(annotated.annotations().value(key));
101 } catch (NumberFormatException e) {
102 value = 1.0;
103 }
104 return value;
105 }
Sho SHIMIZUfe129db2014-11-11 14:24:51 -0800106}