Assign image keyname and pubkey at vnf level
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / devicemanager / impl / src / main / java / org / opendaylight / mwtn / ptp / impl / LogicalTerminationPoint.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
26  * @author herbert
27  *
28  */
29 public class LogicalTerminationPoint {
30
31     String ltpReference;
32     String physicalPortReference;
33     String nodeReference;
34     String siteReference;
35     String siteName;
36     GeoLocation geoLocation;
37
38 }