aac3f58c46645804654ffabd7253341276d0b78b
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / devicemanager / impl / src / main / java / org / opendaylight / mwtn / ptp / impl / GeoLocation.java
1 /**
2  *
3  */
4 package org.opendaylight.mwtn.ptp.impl;
5
6 /**
7  * Path list with logical-termination-point list
8  "path" : [{
9   "path-id": "4d778388-41c8-11e7-a919-92ebcb67fe33",
10   "path-name": "NE-10-ClockIdentity",
11   "layer-protocol-name": "PTP",
12   "directionality": "unidirectional",
13   "logical-termination-point": [{
14     "ltp-reference":"yep",
15     "physical-port-reference": "shelf:1-slot:1-Card-port:5",
16     "node-reference":"NE-10",
17     "site-reference": "site-a",
18     "site-name": "GUI-Label",
19     "geo-location": {
20        "longitude": "54.123456",
21        "latitude": "13.123456"
22     }]
23   }]
24
25  * @author herbert
26  */
27
28 public class GeoLocation {
29     String longitude;
30     String latitude;
31 }