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