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 / base / netconf / ONFCoreNetworkElementRepresentation.java
1 package org.opendaylight.mwtn.base.netconf;
2
3 import org.opendaylight.controller.md.sal.binding.api.MountPoint;
4 import org.opendaylight.mwtn.base.internalTypes.InventoryInformation;
5 import org.opendaylight.mwtn.deviceMonitor.impl.DeviceMonitorSupport;
6
7 public interface ONFCoreNetworkElementRepresentation extends DeviceMonitorSupport {
8
9        public void initialReadFromNetworkElement();
10
11        public String getMountPointNodeName();
12
13        public void resetPMIterator();
14
15        public boolean hasNext();
16
17        public void next();
18
19        public AllPm getHistoricalPM();
20
21        public String pmStatusToString();
22
23        public int removeAllCurrentProblemsOfNode();
24
25        public void doRegisterMicrowaveEventListener(MountPoint mountPoint);
26
27        public void initSynchronizationExtension();
28
29        public InventoryInformation getInventoryInformation();
30
31        public InventoryInformation getInventoryInformation(String layerProtocolFilter);
32
33 }