Improve device manager 1.4 88/114588/2
authoralex.stancu <alexandru.stancu@highstreet-technologies.com>
Wed, 4 Nov 2020 13:34:45 +0000 (15:34 +0200)
committerAlex Stancu <alexandru.stancu@highstreet-technologies.com>
Thu, 12 Nov 2020 09:19:50 +0000 (09:19 +0000)
Add device manager support for ONF Core Model 1.4 notications: AttributeValueChanged, ObjectCreation, ObjectDeletion

Issue-ID: SDNC-1397
Change-Id: I6557f151bc0322b3cef64bc9bf139d352843a7f2
Signed-off-by: alex.stancu <alexandru.stancu@highstreet-technologies.com>
18 files changed:
sdnr/wt/common/src/main/java/org/onap/ccsdk/features/sdnr/wt/common/YangHelper.java [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14AirInterface.java [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14AirInterfaceNotificationListener.java
sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14EthernetContainer.java [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14EthernetContainerNotificationListener.java [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14NetworkElement.java
sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14ToInternalDataModel.java
sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14WireInterface.java [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14WireInterfaceNotificationListener.java [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/yang/ltp-augment-1-0.yang [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/yang/mac-fc-1-0.yang [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/yang/mac-fd-1-0.yang [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/yang/vlan-fc-1-0.yang [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/main/yang/vlan-fd-1-0.yang [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/TestOnf14AirInterfaceNotificationListener.java
sdnr/wt/devicemanager-onf14/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/TestOnf14EthernetContainerNotificationListener.java [new file with mode: 0644]
sdnr/wt/devicemanager-onf14/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/TestOnf14NetworkElement.java
sdnr/wt/devicemanager-onf14/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/TestOnf14WireInterfaceNotificationListener.java [new file with mode: 0644]

diff --git a/sdnr/wt/common/src/main/java/org/onap/ccsdk/features/sdnr/wt/common/YangHelper.java b/sdnr/wt/common/src/main/java/org/onap/ccsdk/features/sdnr/wt/common/YangHelper.java
new file mode 100644 (file)
index 0000000..c6cd8dd
--- /dev/null
@@ -0,0 +1,46 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : ccsdk features
+ * ================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
+ * All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ *
+ */
+package org.onap.ccsdk.features.sdnr.wt.common;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+import java.util.Map;
+
+public class YangHelper {
+
+    static public <T extends Object> Collection<T> getCollection( Map<?,T> map ) {
+        return map != null ? map.values() : null;
+    }
+
+    static public <T extends Object> Collection<T> getCollection( List<T> map ) {
+        return map;
+    }
+
+    static public <T extends Object> List<T> getList( Map<?,T> map ) {
+        return map != null ? new ArrayList<T>(map.values()) : null;
+    }
+
+    static public <T extends Object> List<T> getList( List<T> map ) {
+        return map;
+    }
+}
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14AirInterface.java b/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14AirInterface.java
new file mode 100644 (file)
index 0000000..9e78a92
--- /dev/null
@@ -0,0 +1,54 @@
+/*
+ * ============LICENSE_START========================================================================
+ * ONAP : ccsdk feature sdnr wt
+ * =================================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
+ * =================================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ * ============LICENSE_END==========================================================================
+ */
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl;
+
+import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPE;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPECRITICAL;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPEMAJOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPEMINOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPENONALARMED;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPEWARNING;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class Onf14AirInterface {
+
+    private static final Logger log = LoggerFactory.getLogger(Onf14AirInterface.class);
+
+    public static org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType mapSeverity(
+            Class<? extends SEVERITYTYPE> severity) {
+
+        if (severity != null) {
+            if (severity.getTypeName() == SEVERITYTYPECRITICAL.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Critical;
+            } else if (severity.getTypeName() == SEVERITYTYPEMAJOR.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Major;
+            } else if (severity.getTypeName() == SEVERITYTYPEMINOR.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Minor;
+            } else if (severity.getTypeName() == SEVERITYTYPEWARNING.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Warning;
+            } else if (severity.getTypeName() == SEVERITYTYPENONALARMED.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.NonAlarmed;
+            }
+        }
+
+        return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.NonAlarmed;
+    }
+
+
+}
index 1663f61..0f25e0c 100644 (file)
@@ -28,6 +28,8 @@ import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.
 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ObjectCreationNotification;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ObjectDeletionNotification;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ProblemNotification;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.EventlogBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SourceType;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -46,9 +48,18 @@ public class Onf14AirInterfaceNotificationListener implements AirInterface20List
 
     @Override
     public void onObjectDeletionNotification(ObjectDeletionNotification notification) {
-        // TODO Auto-generated method stub
-        // this type of notification is not yet supported
         log.debug("Got event of type :: {}", ObjectDeletionNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue()).setAttributeName("")
+                .setCounter(notification.getCounter()).setNewValue("deleted")
+                .setObjectId(notification.getObjectIdRef().getValue()).setSourceType(SourceType.Netconf)
+                .setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().deletionNotification(netconfAccessor.getNodeId(),
+                notification.getCounter(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
+
+        log.debug("onObjectDeletionNotification log entry written");
     }
 
     @Override
@@ -57,22 +68,39 @@ public class Onf14AirInterfaceNotificationListener implements AirInterface20List
 
         serviceProvider.getFaultService().faultNotification(netconfAccessor.getNodeId(), notification.getCounter(),
                 notification.getTimestamp(), notification.getObjectIdRef().getValue(), notification.getProblem(),
-                Onf14NetworkElement.mapSeverity(notification.getSeverity()));
+                Onf14AirInterface.mapSeverity(notification.getSeverity()));
 
     }
 
     @Override
     public void onAttributeValueChangedNotification(AttributeValueChangedNotification notification) {
-        // TODO Auto-generated method stub
-        // this type of notification is not yet supported
         log.debug("Got event of type :: {}", AttributeValueChangedNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
+                .setAttributeName(notification.getAttributeName()).setCounter(notification.getCounter())
+                .setNewValue(notification.getNewValue()).setObjectId(notification.getObjectIdRef().getValue())
+                .setSourceType(SourceType.Netconf).setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().eventNotification(eventlogBuilder.build());
+
+        log.debug("onAttributeValueChangedNotification log entry written");
     }
 
     @Override
     public void onObjectCreationNotification(ObjectCreationNotification notification) {
-        // TODO Auto-generated method stub
-        // this type of notification is not yet supported
         log.debug("Got event of type :: {}", ObjectCreationNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue()).setAttributeName(notification.getObjectType())
+                .setCounter(notification.getCounter()).setNewValue("created")
+                .setObjectId(notification.getObjectIdRef().getValue()).setSourceType(SourceType.Netconf)
+                .setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().creationNotification(netconfAccessor.getNodeId(),
+                notification.getCounter(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
+
+        log.debug("onObjectCreationNotification log entry written");
     }
 
 }
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14EthernetContainer.java b/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14EthernetContainer.java
new file mode 100644 (file)
index 0000000..4654bfe
--- /dev/null
@@ -0,0 +1,54 @@
+/*
+ * ============LICENSE_START========================================================================
+ * ONAP : ccsdk feature sdnr wt
+ * =================================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
+ * =================================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ * ============LICENSE_END==========================================================================
+ */
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl;
+
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPE;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPECRITICAL;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPEMAJOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPEMINOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPENONALARMED;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPEWARNING;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class Onf14EthernetContainer {
+
+    private static final Logger log = LoggerFactory.getLogger(Onf14EthernetContainer.class);
+
+    public static org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType mapSeverity(
+            Class<? extends SEVERITYTYPE> severity) {
+
+        if (severity != null) {
+            if (severity.getTypeName() == SEVERITYTYPECRITICAL.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Critical;
+            } else if (severity.getTypeName() == SEVERITYTYPEMAJOR.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Major;
+            } else if (severity.getTypeName() == SEVERITYTYPEMINOR.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Minor;
+            } else if (severity.getTypeName() == SEVERITYTYPEWARNING.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Warning;
+            } else if (severity.getTypeName() == SEVERITYTYPENONALARMED.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.NonAlarmed;
+            }
+        }
+
+        return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.NonAlarmed;
+    }
+
+
+}
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14EthernetContainerNotificationListener.java b/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14EthernetContainerNotificationListener.java
new file mode 100644 (file)
index 0000000..c2fba89
--- /dev/null
@@ -0,0 +1,116 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : ccsdk feature sdnr wt
+ * ================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
+ * All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ *
+ */
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl;
+
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
+import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.AttributeValueChangedNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.EthernetContainer20Listener;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ObjectCreationNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ObjectDeletionNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ProblemNotification;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.EventlogBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SourceType;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class Onf14EthernetContainerNotificationListener implements EthernetContainer20Listener {
+
+    private static final Logger log = LoggerFactory.getLogger(Onf14EthernetContainerNotificationListener.class);
+
+    private final NetconfAccessor netconfAccessor;
+    private final DeviceManagerServiceProvider serviceProvider;
+
+    public Onf14EthernetContainerNotificationListener(NetconfAccessor netconfAccessor,
+            DeviceManagerServiceProvider serviceProvider) {
+        this.netconfAccessor = netconfAccessor;
+        this.serviceProvider = serviceProvider;
+    }
+
+    @Override
+    public void onObjectDeletionNotification(ObjectDeletionNotification notification) {
+        log.debug("Got event of type :: {}", ObjectDeletionNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
+        .setAttributeName("")
+        .setCounter(notification.getCounter().intValue())
+        .setNewValue("deleted")
+        .setObjectId(notification.getObjectIdRef().getValue())
+        .setSourceType(SourceType.Netconf)
+        .setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().deletionNotification(netconfAccessor.getNodeId(),
+                notification.getCounter().intValue(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
+
+        log.debug("onObjectDeletionNotification log entry written");
+    }
+
+    @Override
+    public void onProblemNotification(ProblemNotification notification) {
+        log.debug("Got event of type :: {}", ProblemNotification.class.getSimpleName());
+
+        serviceProvider.getFaultService().faultNotification(netconfAccessor.getNodeId(),
+                notification.getCounter().intValue(), notification.getTimestamp(),
+                notification.getObjectIdRef().getValue(), notification.getProblem(),
+                Onf14EthernetContainer.mapSeverity(notification.getSeverity()));
+
+    }
+
+    @Override
+    public void onAttributeValueChangedNotification(AttributeValueChangedNotification notification) {
+        log.debug("Got event of type :: {}", AttributeValueChangedNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
+        .setAttributeName(notification.getAttributeName())
+        .setCounter(notification.getCounter().intValue())
+        .setNewValue(notification.getNewValue())
+        .setObjectId(notification.getObjectIdRef().getValue())
+        .setSourceType(SourceType.Netconf)
+        .setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().eventNotification(eventlogBuilder.build());
+
+        log.debug("onAttributeValueChangedNotification log entry written");
+    }
+
+    @Override
+    public void onObjectCreationNotification(ObjectCreationNotification notification) {
+        log.debug("Got event of type :: {}", ObjectCreationNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
+        .setAttributeName(notification.getObjectType())
+        .setCounter(notification.getCounter().intValue())
+        .setNewValue("created")
+        .setObjectId(notification.getObjectIdRef().getValue())
+        .setSourceType(SourceType.Netconf)
+        .setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().creationNotification(netconfAccessor.getNodeId(),
+                notification.getCounter().intValue(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
+
+        log.debug("onObjectCreationNotification log entry written");
+    }
+
+}
index 816aa50..b722a61 100644 (file)
 package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl;
 
 import java.util.ArrayList;
+import java.util.Collection;
 import java.util.List;
 import java.util.Optional;
 import org.eclipse.jdt.annotation.NonNull;
 import org.eclipse.jdt.annotation.Nullable;
+import org.onap.ccsdk.features.sdnr.wt.common.YangHelper;
 import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.DataProvider;
 import org.onap.ccsdk.features.sdnr.wt.devicemanager.ne.service.NetworkElement;
 import org.onap.ccsdk.features.sdnr.wt.devicemanager.ne.service.NetworkElementService;
@@ -32,14 +34,6 @@ import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.Capabilities;
 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.LAYERPROTOCOLNAMETYPEAIRLAYER;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.LayerProtocol1;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPE;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPECRITICAL;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPEMAJOR;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPEMINOR;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPENONALARMED;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.SEVERITYTYPEWARNING;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.air._interface.current.problems.CurrentProblemList;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.air._interface.lp.spec.AirInterfacePac;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.air._interface.pac.AirInterfaceCurrentProblems;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.ControlConstruct;
@@ -52,6 +46,12 @@ import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.cont
 import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.equipment.ContainedHolder;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.logical.termination.point.LayerProtocol;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.logical.termination.point.LayerProtocolKey;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.LAYERPROTOCOLNAMETYPEETHERNETCONTAINERLAYER;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ethernet.container.lp.spec.EthernetContainerPac;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ethernet.container.pac.EthernetContainerCurrentProblems;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.LAYERPROTOCOLNAMETYPEWIRELAYER;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.wire._interface.lp.spec.WireInterfacePac;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.wire._interface.pac.WireInterfaceCurrentProblems;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.NetconfNode;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.NetworkElementConnectionBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.NetworkElementDeviceType;
@@ -89,6 +89,16 @@ public class Onf14NetworkElement implements NetworkElement {
     private ListenerRegistration<NotificationListener> airInterfaceNotificationListenerHandler;
     private @NonNull final Onf14AirInterfaceNotificationListener airInterfaceNotificationListener;
 
+    // ethernet container related members
+    private final List<TechnologySpecificPacKeys> ethernetContainerList = new ArrayList<TechnologySpecificPacKeys>();
+    private ListenerRegistration<NotificationListener> etherneContainerNotificationListenerHandler;
+    private @NonNull final Onf14EthernetContainerNotificationListener ethernetContainerNotificationListener;
+
+    // wire interface related members
+    private final List<TechnologySpecificPacKeys> wireInterfaceList = new ArrayList<TechnologySpecificPacKeys>();
+    private ListenerRegistration<NotificationListener> wireInterfaceNotificationListenerHandler;
+    private @NonNull final Onf14WireInterfaceNotificationListener wireInterfaceNotificationListener;
+
     Onf14NetworkElement(NetconfAccessor netconfAccess, DeviceManagerServiceProvider serviceProvider) {
         log.info("Create {}", Onf14NetworkElement.class.getSimpleName());
         this.netconfAccessor = netconfAccess;
@@ -97,6 +107,11 @@ public class Onf14NetworkElement implements NetworkElement {
         this.onf14Mapper = new Onf14ToInternalDataModel();
         this.airInterfaceNotificationListenerHandler = null;
         airInterfaceNotificationListener = new Onf14AirInterfaceNotificationListener(netconfAccess, serviceProvider);
+        this.etherneContainerNotificationListenerHandler = null;
+        ethernetContainerNotificationListener =
+                new Onf14EthernetContainerNotificationListener(netconfAccess, serviceProvider);
+        this.wireInterfaceNotificationListenerHandler = null;
+        wireInterfaceNotificationListener = new Onf14WireInterfaceNotificationListener(netconfAccess, serviceProvider);
     }
 
     public void initialReadFromNetworkElement() {
@@ -110,8 +125,17 @@ public class Onf14NetworkElement implements NetworkElement {
         log.debug("Removed all {} problems from database at registration", problems);
 
         readAllAirInterfaceCurrentProblems(resultList);
+        problems = resultList.size();
+        log.debug("NETCONF read air interface current problems completed. Got back {} problems.", problems);
+
+        readAllEhernetContainerCurrentProblems(resultList);
+        problems = resultList.size() - problems;
         log.debug("NETCONF read current problems completed. Got back {} problems.", resultList.size());
 
+        readAllWireInterfaceCurrentProblems(resultList);
+        problems = resultList.size();
+        log.debug("NETCONF read wire interface current problems completed. Got back {} problems.", problems);
+
         faultService.initCurrentProblemStatus(netconfAccessor.getNodeId(), resultList);
         log.debug("DB write current problems completed");
 
@@ -129,6 +153,30 @@ public class Onf14NetworkElement implements NetworkElement {
         }
     }
 
+    public void readAllEhernetContainerCurrentProblems(FaultData resultList) {
+
+        int idxStart; // Start index for debug messages
+
+        for (TechnologySpecificPacKeys key : ethernetContainerList) {
+            idxStart = resultList.size();
+
+            readEthernetConainerCurrentProblemForLtp(key.getLtpUuid(), key.getLocalId(), resultList);
+            debugResultList(key.getLtpUuid().getValue(), resultList, idxStart);
+        }
+    }
+
+    public void readAllWireInterfaceCurrentProblems(FaultData resultList) {
+
+        int idxStart; // Start index for debug messages
+
+        for (TechnologySpecificPacKeys key : wireInterfaceList) {
+            idxStart = resultList.size();
+
+            readWireInterfaceCurrentProblemForLtp(key.getLtpUuid(), key.getLocalId(), resultList);
+            debugResultList(key.getLtpUuid().getValue(), resultList, idxStart);
+        }
+    }
+
     /**
      * @param nNode
      * set core-model-capability
@@ -149,15 +197,20 @@ public class Onf14NetworkElement implements NetworkElement {
         }
         databaseService.updateNetworkConnection22(eb.build(), netconfAccessor.getNodeId().getValue());
     }
-    
+
     @Override
     public void register() {
         // Set core-model revision value in "core-model-capability" field
         setCoreModel(netconfAccessor.getNetconfNode());
         initialReadFromNetworkElement();
+
         // Register netconf stream
         airInterfaceNotificationListenerHandler =
                 netconfAccessor.doRegisterNotificationListener(airInterfaceNotificationListener);
+        etherneContainerNotificationListenerHandler =
+                netconfAccessor.doRegisterNotificationListener(ethernetContainerNotificationListener);
+        wireInterfaceNotificationListenerHandler =
+                netconfAccessor.doRegisterNotificationListener(wireInterfaceNotificationListener);
         netconfAccessor.registerNotificationsStream(NetconfAccessor.DefaultNotificationsStream);
     }
 
@@ -188,26 +241,6 @@ public class Onf14NetworkElement implements NetworkElement {
         return NetworkElementDeviceType.Wireless;
     }
 
-    public static org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType mapSeverity(
-            Class<? extends SEVERITYTYPE> severity) {
-
-        if (severity != null) {
-            if (severity.getTypeName() == SEVERITYTYPECRITICAL.class.getName()) {
-                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Critical;
-            } else if (severity.getTypeName() == SEVERITYTYPEMAJOR.class.getName()) {
-                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Major;
-            } else if (severity.getTypeName() == SEVERITYTYPEMINOR.class.getName()) {
-                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Minor;
-            } else if (severity.getTypeName() == SEVERITYTYPEWARNING.class.getName()) {
-                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Warning;
-            } else if (severity.getTypeName() == SEVERITYTYPENONALARMED.class.getName()) {
-                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.NonAlarmed;
-            }
-        }
-
-        return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.NonAlarmed;
-    }
-
     private void readEquipmentData() {
 
         Optional<ControlConstruct> controlConstruct = readControlConstruct(netconfAccessor);
@@ -233,8 +266,8 @@ public class Onf14NetworkElement implements NetworkElement {
             }
         }
 
-        // storing all the airInterface LTP UUIDs internally, for later usage
-        readAirInterfaceKeys(controlConstruct);
+        // storing all the LTP UUIDs internally, for later usage, for air-interface and ethernet-container
+        readKeys(controlConstruct);
     }
 
     private void addEquipmentToDb(Equipment currentEq, Equipment parentEq, long treeLevel) {
@@ -258,7 +291,7 @@ public class Onf14NetworkElement implements NetworkElement {
         // we iterate the kids of our current equipment and add them to the database recursively
         // the actual reference is here: /core-model:control-construct/equipment/contained-holder/occupying-fru
         @NonNull
-        List<ContainedHolder> holderList = currentEq.nonnullContainedHolder();
+        Collection<ContainedHolder> holderList = YangHelper.getCollection(currentEq.nonnullContainedHolder());
 
         for (ContainedHolder holder : holderList) {
             @Nullable
@@ -275,17 +308,17 @@ public class Onf14NetworkElement implements NetworkElement {
         }
     }
 
-    private void readAirInterfaceKeys(Optional<ControlConstruct> controlConstruct) {
+    private void readKeys(Optional<ControlConstruct> controlConstruct) {
 
         if (controlConstruct.isPresent()) {
             @NonNull
-            List<LogicalTerminationPoint> ltpList = controlConstruct.get().nonnullLogicalTerminationPoint();
+            Collection<LogicalTerminationPoint> ltpList = YangHelper.getCollection(controlConstruct.get().nonnullLogicalTerminationPoint());
             log.debug("Iterating the LTP list for node {}", netconfAccessor.getNodeId().getValue());
 
             // iterating all the Logical Termination Point list
             for (LogicalTerminationPoint ltp : ltpList) {
                 @NonNull
-                List<LayerProtocol> lpList = ltp.nonnullLayerProtocol();
+                List<LayerProtocol> lpList = YangHelper.getList(ltp.nonnullLayerProtocol());
                 // the Layer Protocol list should contain only one item, since we have an 1:1 relationship between the LTP and the LP
                 if (lpList.size() != 1) {
                     log.debug("Layer protocol has no 1:1 relationship with the LTP.");
@@ -296,7 +329,7 @@ public class Onf14NetworkElement implements NetworkElement {
                 @Nullable
                 Class<? extends LAYERPROTOCOLNAMETYPE> layerProtocolName = lp.getLayerProtocolName();
                 if (layerProtocolName != null) {
-                    // it the LTP has an airInterface technology extension, the layer protocol name is air-layer
+                    // if the LTP has an airInterface technology extension, the layer protocol name is air-layer
                     if (layerProtocolName.getTypeName() == LAYERPROTOCOLNAMETYPEAIRLAYER.class.getName()) {
                         TechnologySpecificPacKeys airInterfaceKey =
                                 new TechnologySpecificPacKeys(ltp.getUuid(), lp.getLocalId());
@@ -304,6 +337,21 @@ public class Onf14NetworkElement implements NetworkElement {
                         log.debug("Adding Ltp with uuid {} and local-id {} to the air-interface list",
                                 ltp.getUuid().getValue(), lp.getLocalId());
                     }
+                    // if the LTP has an ethernetContainier technology extension, the layer protocol name is ethernet-container-layer
+                    else if (layerProtocolName.getTypeName() == LAYERPROTOCOLNAMETYPEETHERNETCONTAINERLAYER.class
+                            .getName()) {
+                        TechnologySpecificPacKeys ethernetContainerKey =
+                                new TechnologySpecificPacKeys(ltp.getUuid(), lp.getLocalId());
+                        ethernetContainerList.add(ethernetContainerKey);
+                        log.debug("Adding Ltp with uuid {} and local-id {} to the ethernet-contatinier list",
+                                ltp.getUuid().getValue(), lp.getLocalId());
+                    } else if (layerProtocolName.getTypeName() == LAYERPROTOCOLNAMETYPEWIRELAYER.class.getName()) {
+                        TechnologySpecificPacKeys wireInterfaceKey =
+                                new TechnologySpecificPacKeys(ltp.getUuid(), lp.getLocalId());
+                        wireInterfaceList.add(wireInterfaceKey);
+                        log.debug("Adding Ltp with uuid {} and local-id {} to the wire-interface list",
+                                ltp.getUuid().getValue(), lp.getLocalId());
+                    }
                 }
             }
         }
@@ -317,11 +365,13 @@ public class Onf14NetworkElement implements NetworkElement {
                 clazzPac.getSimpleName(), netconfAccessor.getNodeId().getValue(), ltpUuid.getValue(), localId);
 
         // constructing the IID needs the augmentation exposed byy the air-interface-2-0 model
-        InstanceIdentifier<AirInterfaceCurrentProblems> airInterfaceCurrentProblem_IID =
-                InstanceIdentifier.builder(ControlConstruct.class)
-                        .child(LogicalTerminationPoint.class, new LogicalTerminationPointKey(ltpUuid))
-                        .child(LayerProtocol.class, new LayerProtocolKey(localId)).augmentation(LayerProtocol1.class)
-                        .child(AirInterfacePac.class).child(AirInterfaceCurrentProblems.class).build();
+        InstanceIdentifier<AirInterfaceCurrentProblems> airInterfaceCurrentProblem_IID = InstanceIdentifier
+                .builder(ControlConstruct.class)
+                .child(LogicalTerminationPoint.class, new LogicalTerminationPointKey(ltpUuid))
+                .child(LayerProtocol.class, new LayerProtocolKey(localId))
+                .augmentation(
+                        org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.LayerProtocol1.class)
+                .child(AirInterfacePac.class).child(AirInterfaceCurrentProblems.class).build();
 
         // reading all the current-problems list for this specific LTP and LP
         AirInterfaceCurrentProblems problems = netconfAccessor.getTransactionUtils().readData(
@@ -332,16 +382,86 @@ public class Onf14NetworkElement implements NetworkElement {
         } else if (problems.getCurrentProblemList() == null) {
             log.debug("DBRead Id {} empty CurrentProblemList", ltpUuid);
         } else {
-            for (CurrentProblemList problem : problems.nonnullCurrentProblemList()) {
+            for (org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.air._interface.current.problems.CurrentProblemList problem : YangHelper.getCollection(problems
+                    .nonnullCurrentProblemList())) {
+                resultList.add(netconfAccessor.getNodeId(), (int) problem.getSequenceNumber(), problem.getTimestamp(),
+                        ltpUuid.getValue(), problem.getProblemName(),
+                        Onf14AirInterface.mapSeverity(problem.getProblemSeverity()));
+            }
+        }
+    }
+
+    private void readEthernetConainerCurrentProblemForLtp(UniversalId ltpUuid, String localId, FaultData resultList) {
+
+        final Class<EthernetContainerPac> clazzPac = EthernetContainerPac.class;
+
+        log.info("DBRead Get current problems for class {} from mountpoint {} for LTP uuid {} and local-id {}",
+                clazzPac.getSimpleName(), netconfAccessor.getNodeId().getValue(), ltpUuid.getValue(), localId);
+
+        // constructing the IID needs the augmentation exposed by the ethernet-container-2-0 model
+        InstanceIdentifier<EthernetContainerCurrentProblems> etherneContainerCurrentProblem_IID = InstanceIdentifier
+                .builder(ControlConstruct.class)
+                .child(LogicalTerminationPoint.class, new LogicalTerminationPointKey(ltpUuid))
+                .child(LayerProtocol.class, new LayerProtocolKey(localId))
+                .augmentation(
+                        org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.LayerProtocol1.class)
+                .child(EthernetContainerPac.class).child(EthernetContainerCurrentProblems.class).build();
+
+        // reading all the current-problems list for this specific LTP and LP
+        EthernetContainerCurrentProblems problems = netconfAccessor.getTransactionUtils().readData(
+                netconfAccessor.getDataBroker(), LogicalDatastoreType.OPERATIONAL, etherneContainerCurrentProblem_IID);
+
+        if (problems == null) {
+            log.debug("DBRead Id {} no EthernetContainerCurrentProblems", ltpUuid);
+        } else if (problems.getCurrentProblemList() == null) {
+            log.debug("DBRead Id {} empty CurrentProblemList", ltpUuid);
+        } else {
+            for (org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ethernet.container.current.problems.CurrentProblemList problem : YangHelper.getCollection(problems
+                    .nonnullCurrentProblemList())) {
+                resultList.add(netconfAccessor.getNodeId(), (int) problem.getSequenceNumber(), problem.getTimestamp(),
+                        ltpUuid.getValue(), problem.getProblemName(),
+                        Onf14EthernetContainer.mapSeverity(problem.getProblemSeverity()));
+            }
+        }
+    }
+
+    private void readWireInterfaceCurrentProblemForLtp(UniversalId ltpUuid, String localId, FaultData resultList) {
+
+        final Class<WireInterfacePac> clazzPac = WireInterfacePac.class;
+
+        log.info("DBRead Get current problems for class {} from mountpoint {} for LTP uuid {} and local-id {}",
+                clazzPac.getSimpleName(), netconfAccessor.getNodeId().getValue(), ltpUuid.getValue(), localId);
+
+        // constructing the IID needs the augmentation exposed by the wire-interface-2-0 model
+        InstanceIdentifier<WireInterfaceCurrentProblems> wireInterfaceCurrentProblem_IID = InstanceIdentifier
+                .builder(ControlConstruct.class)
+                .child(LogicalTerminationPoint.class, new LogicalTerminationPointKey(ltpUuid))
+                .child(LayerProtocol.class, new LayerProtocolKey(localId))
+                .augmentation(
+                        org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.LayerProtocol1.class)
+                .child(WireInterfacePac.class).child(WireInterfaceCurrentProblems.class).build();
+
+        // reading all the current-problems list for this specific LTP and LP
+        WireInterfaceCurrentProblems problems = netconfAccessor.getTransactionUtils().readData(
+                netconfAccessor.getDataBroker(), LogicalDatastoreType.OPERATIONAL, wireInterfaceCurrentProblem_IID);
+
+        if (problems == null) {
+            log.debug("DBRead Id {} no WireInterfaceCurrentProblems", ltpUuid);
+        } else if (problems.getCurrentProblemList() == null) {
+            log.debug("DBRead Id {} empty CurrentProblemList", ltpUuid);
+        } else {
+            for (org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.wire._interface.current.problems.CurrentProblemList problem : YangHelper.getCollection(problems
+                    .nonnullCurrentProblemList())) {
                 resultList.add(netconfAccessor.getNodeId(), (int) problem.getSequenceNumber(), problem.getTimestamp(),
-                        ltpUuid.getValue(), problem.getProblemName(), mapSeverity(problem.getProblemSeverity()));
+                        ltpUuid.getValue(), problem.getProblemName(),
+                        Onf14WireInterface.mapSeverity(problem.getProblemSeverity()));
             }
         }
     }
 
     private Optional<ControlConstruct> readControlConstruct(NetconfAccessor netconfAccessor) {
         return Optional.ofNullable(netconfAccessor.getTransactionUtils().readData(netconfAccessor.getDataBroker(),
-                LogicalDatastoreType.OPERATIONAL, CONTROLCONSTRUCT_IID));
+                LogicalDatastoreType.CONFIGURATION, CONTROLCONSTRUCT_IID));
     }
 
     private @Nullable Equipment readEquipmentInstance(NetconfAccessor accessData, UniversalId equipmentUuid) {
@@ -354,7 +474,7 @@ public class Onf14NetworkElement implements NetworkElement {
         InstanceIdentifier<Equipment> equipmentIID = InstanceIdentifier.builder(ControlConstruct.class)
                 .child(Equipment.class, new EquipmentKey(equipmentUuid)).build();
 
-        return accessData.getTransactionUtils().readData(accessData.getDataBroker(), LogicalDatastoreType.OPERATIONAL,
+        return accessData.getTransactionUtils().readData(accessData.getDataBroker(), LogicalDatastoreType.CONFIGURATION,
                 equipmentIID);
     }
 
index ad42f03..63e89f7 100644 (file)
 package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl;
 
 import java.util.ArrayList;
+import java.util.Collection;
 import java.util.List;
 import org.eclipse.jdt.annotation.NonNull;
 import org.eclipse.jdt.annotation.Nullable;
+import org.onap.ccsdk.features.sdnr.wt.common.YangHelper;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.Equipment;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.EquipmentInstance;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.EquipmentType;
@@ -65,7 +67,7 @@ public class Onf14ToInternalDataModel {
 
             List<String> containedHolderKeyList = new ArrayList<String>();
             @NonNull
-            List<ContainedHolder> containedHolderList = currentEq.nonnullContainedHolder();
+            Collection<ContainedHolder> containedHolderList = YangHelper.getCollection(currentEq.nonnullContainedHolder());
             for (ContainedHolder holder : containedHolderList) {
                 @Nullable
                 UniversalId occupyingFru = holder.getOccupyingFru();
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14WireInterface.java b/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14WireInterface.java
new file mode 100644 (file)
index 0000000..70f5520
--- /dev/null
@@ -0,0 +1,54 @@
+/*
+ * ============LICENSE_START========================================================================
+ * ONAP : ccsdk feature sdnr wt
+ * =================================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
+ * =================================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ * ============LICENSE_END==========================================================================
+ */
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl;
+
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPE;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPECRITICAL;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEMAJOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEMINOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPENONALARMED;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEWARNING;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class Onf14WireInterface {
+
+    private static final Logger log = LoggerFactory.getLogger(Onf14WireInterface.class);
+
+    public static org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType mapSeverity(
+            Class<? extends SEVERITYTYPE> severity) {
+
+        if (severity != null) {
+            if (severity.getTypeName() == SEVERITYTYPECRITICAL.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Critical;
+            } else if (severity.getTypeName() == SEVERITYTYPEMAJOR.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Major;
+            } else if (severity.getTypeName() == SEVERITYTYPEMINOR.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Minor;
+            } else if (severity.getTypeName() == SEVERITYTYPEWARNING.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.Warning;
+            } else if (severity.getTypeName() == SEVERITYTYPENONALARMED.class.getName()) {
+                return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.NonAlarmed;
+            }
+        }
+
+        return org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType.NonAlarmed;
+    }
+
+
+}
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14WireInterfaceNotificationListener.java b/sdnr/wt/devicemanager-onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/Onf14WireInterfaceNotificationListener.java
new file mode 100644 (file)
index 0000000..39beaa8
--- /dev/null
@@ -0,0 +1,115 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : ccsdk feature sdnr wt
+ * ================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
+ * All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ *
+ */
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl;
+
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
+import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.AttributeValueChangedNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.ObjectCreationNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.ObjectDeletionNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.ProblemNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.WireInterface20Listener;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.EventlogBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SourceType;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class Onf14WireInterfaceNotificationListener implements WireInterface20Listener {
+
+    private static final Logger log = LoggerFactory.getLogger(Onf14WireInterfaceNotificationListener.class);
+
+    private final NetconfAccessor netconfAccessor;
+    private final DeviceManagerServiceProvider serviceProvider;
+
+    public Onf14WireInterfaceNotificationListener(NetconfAccessor netconfAccessor,
+            DeviceManagerServiceProvider serviceProvider) {
+        this.netconfAccessor = netconfAccessor;
+        this.serviceProvider = serviceProvider;
+    }
+
+    @Override
+    public void onObjectDeletionNotification(ObjectDeletionNotification notification) {
+        log.debug("Got event of type :: {}", ObjectDeletionNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
+        .setAttributeName("")
+        .setCounter(notification.getCounter())
+        .setNewValue("deleted")
+        .setObjectId(notification.getObjectIdRef().getValue())
+        .setSourceType(SourceType.Netconf)
+        .setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().deletionNotification(netconfAccessor.getNodeId(),
+                notification.getCounter(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
+
+        log.debug("onObjectDeletionNotification log entry written");
+    }
+
+    @Override
+    public void onProblemNotification(ProblemNotification notification) {
+        log.debug("Got event of type :: {}", ProblemNotification.class.getSimpleName());
+
+        serviceProvider.getFaultService().faultNotification(netconfAccessor.getNodeId(), notification.getCounter(),
+                notification.getTimestamp(), notification.getObjectIdRef().getValue(), notification.getProblem(),
+                Onf14WireInterface.mapSeverity(notification.getSeverity()));
+
+    }
+
+    @Override
+    public void onAttributeValueChangedNotification(AttributeValueChangedNotification notification) {
+        log.debug("Got event of type :: {}", AttributeValueChangedNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
+        .setAttributeName(notification.getAttributeName())
+        .setCounter(notification.getCounter())
+        .setNewValue(notification.getNewValue())
+        .setObjectId(notification.getObjectIdRef().getValue())
+        .setSourceType(SourceType.Netconf)
+        .setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().eventNotification(eventlogBuilder.build());
+
+        log.debug("onAttributeValueChangedNotification log entry written");
+    }
+
+    @Override
+    public void onObjectCreationNotification(ObjectCreationNotification notification) {
+        log.debug("Got event of type :: {}", ObjectCreationNotification.class.getSimpleName());
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
+        .setAttributeName(notification.getObjectType())
+        .setCounter(notification.getCounter())
+        .setNewValue("created")
+        .setObjectId(notification.getObjectIdRef().getValue())
+        .setSourceType(SourceType.Netconf)
+        .setTimestamp(notification.getTimestamp());
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getNotificationService().creationNotification(netconfAccessor.getNodeId(),
+                notification.getCounter(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
+
+        log.debug("onObjectCreationNotification log entry written");
+    }
+
+}
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/yang/ltp-augment-1-0.yang b/sdnr/wt/devicemanager-onf14/provider/src/main/yang/ltp-augment-1-0.yang
new file mode 100644 (file)
index 0000000..a1aae58
--- /dev/null
@@ -0,0 +1,102 @@
+module ltp-augment-1-0 {\r
+  yang-version 1.1;\r
+  namespace "urn:onf:yang:ltp-augment-1-0";\r
+  prefix ltp-augment;\r
+\r
+  import ietf-yang-types {\r
+    prefix yang;\r
+  }\r
+  import core-model-1-4 {\r
+    prefix core-model;\r
+  }\r
+\r
+  organization \r
+     "openBackhaul.com proposal to Open Networking Foundation (ONF)";\r
+  contact\r
+    "WG Web : https://github.com/openBackhaul/Overview\r
+    WG List: LtpAugment@openBackhaul.com\r
+    Editor : Thorsten Heinze\r
+    Email  : Thorsten.Heinze@openBackhaul.com";\r
+  description\r
+    "Copyright 2019 openBackhaul.com\r
+\r
+    Licensed under the Apache License, Version 2.0 (the 'License');\r
+    you may not use this file except in compliance with the License.\r
+    You may obtain a copy of the License at\r
+    http://www.apache.org/licenses/LICENSE-2.0\r
+    Unless required by applicable law or agreed to in writing, software\r
+    distributed under the License is distributed on an 'AS IS' BASIS,\r
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+    See the License for the specific language governing permissions and\r
+    limitations under the License.";\r
+\r
+  revision 2020-07-30 {\r
+    description \r
+      "Model for the Transport SDN Pilot at Telefonica Germany.\r
+      Please view https://github.com/openBackhaul/ltpAugment/issues for changes.";\r
+    reference \r
+      "https://github.com/openBackhaul/ltpAugment/tree/tsp: Model definition\r
+      https://github.com/openBackhaul/onfCoreIm/tree/tsp: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";\r
+  }\r
+\r
+  augment "/core-model:control-construct/core-model:logical-termination-point"{\r
+    uses ltp-augment-spec;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+  * grouping statements for object classes\r
+  **************************************/ \r
+    grouping ltp-augment-spec {\r
+      container ltp-augment-pac {\r
+        uses ltp-augment-pac;\r
+        description\r
+          "none";\r
+      }\r
+      description\r
+        "none";\r
+    }\r
+\r
+    grouping ltp-augment-pac {\r
+      container ltp-augment-configuration {\r
+        uses ltp-augment-configuration;\r
+        description\r
+          "none";\r
+      }\r
+      description\r
+        "none";\r
+    }\r
+\r
+    grouping ltp-augment-configuration {\r
+      leaf-list equipment {\r
+        type leafref {\r
+          path "/core-model:control-construct/core-model:equipment/core-model:uuid";\r
+          require-instance false;\r
+        }\r
+        config false;\r
+        description\r
+          "Equipment, which determines the characteristics of this interface (LTP).";\r
+      }\r
+      leaf connector {\r
+        type leafref {\r
+          path "/core-model:control-construct/core-model:equipment/core-model:connector/core-model:local-id";\r
+          require-instance false;\r
+        }\r
+        config false;\r
+        description\r
+          "Connector, where this interface (LTP) can be physically connected.";\r
+      }\r
+      description  \r
+        "none";\r
+    }\r
+\r
+  /****************************************\r
+  * typedef statements\r
+  **************************************/ \r
+\r
+  /*********************************************\r
+  * grouping statements for complex data types\r
+  *******************************************/ \r
+\r
+}\r
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/yang/mac-fc-1-0.yang b/sdnr/wt/devicemanager-onf14/provider/src/main/yang/mac-fc-1-0.yang
new file mode 100644 (file)
index 0000000..cbe692c
--- /dev/null
@@ -0,0 +1,569 @@
+module mac-fc-1-0 {\r
+  yang-version 1.1;\r
+  namespace "urn:onf:yang:mac-fc-1-0";\r
+  prefix mac-fc;\r
+\r
+  import ietf-yang-types {\r
+    prefix yang;\r
+  }\r
+  import core-model-1-4 {\r
+    prefix core-model;\r
+  }\r
+\r
+  organization\r
+    "openBackhaul.com proposal to Open Networking Foundation (ONF)";\r
+  contact\r
+    "WG Web : https://github.com/openBackhaul/Overview\r
+     WG List: MacFc@openBackhaul.com\r
+     Editor : Thorsten Heinze\r
+     Email  : Thorsten.Heinze@openBackhaul.com";\r
+  description\r
+    "Technology specific amendment to the ForwardingConstruct class for documenting entries in the MAC forwarding table according to IEEE 802.1 .\r
+\r
+     Copyright 2019 openBackhaul.com\r
+\r
+     Licensed under the Apache License, Version 2.0 (the 'License');\r
+     you may not use this file except in compliance with the License.\r
+     You may obtain a copy of the License at\r
+     http://www.apache.org/licenses/LICENSE-2.0\r
+     Unless required by applicable law or agreed to in writing, software\r
+     distributed under the License is distributed on an 'AS IS' BASIS,\r
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+     See the License for the specific language governing permissions and\r
+     limitations under the License.";\r
+\r
+  revision 2020-08-26 {\r
+    description\r
+      "Model for the Transport SDN Pilot at Telefonica Germany\r
+       Please view https://github.com/openBackhaul/macFc/issues for changes.";\r
+    reference\r
+      "https://github.com/openBackhaul/macFc/tree/tsp: Model definition\r
+       https://github.com/openBackhaul/onfCoreIm/tree/tsp: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";\r
+  }\r
+\r
+  identity LAYER_PROTOCOL_NAME_TYPE_MAC_LAYER {\r
+    base core-model:LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  augment "/core-model:control-construct/core-model:forwarding-domain/core-model:fc" {\r
+    when "derived-from-or-self(./core-model:layer-protocol-name, 'mac-fc:LAYER_PROTOCOL_NAME_TYPE_MAC_LAYER')";\r
+    uses mac-fc-spec;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * package notifications\r
+   **************************************/ \r
+\r
+  notification object-creation-notification {\r
+    uses object-creation-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping object-creation-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts object creation notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:fc/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-type {\r
+      type string;\r
+      default "Type of created object not specified.";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  notification object-deletion-notification {\r
+    uses object-deletion-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping object-deletion-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts object deletion notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:fc/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  notification attribute-value-changed-notification {\r
+    uses attribute-value-changed-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping attribute-value-changed-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts attribute value changed notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:fc/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf attribute-name {\r
+      type string;\r
+      default "Attribute name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the attribute that has been changed.";\r
+    }\r
+    leaf new-value {\r
+      type string;\r
+      default "New value not specified.";\r
+      config false;\r
+      description\r
+        "Attribute value converted to a string (xml, json, ...)";\r
+    }\r
+    description\r
+      "To be sent when an attribute has changed and one or more controllers have to update their data.";\r
+  }\r
+\r
+  notification problem-notification {\r
+    uses problem-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping problem-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts problem notifications";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:fc/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf problem {\r
+      type string;\r
+      default "Problem name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the problem according to *Capability::supportedAlarmList";\r
+    }\r
+    leaf severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_WARNING";\r
+      config false;\r
+      description\r
+        "Severity of the problem according to *Configuration::problemSeverityList";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * grouping statements for object classes\r
+   **************************************/ \r
+  /****************************************\r
+   * package super-classes\r
+   **************************************/ \r
+\r
+  grouping current-problem {\r
+    leaf sequence-number {\r
+      type int16;\r
+      config false;\r
+      description\r
+        "Unique sequence number of the current problem object.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf problem-severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "Severity of the alarm.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fc-spec {\r
+    container mac-fc-pac {\r
+      uses mac-fc-pac;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "Represents an entry into the MAC forwarding table. Name in ieee802-dot1q-bridge.yang: filtering-entry.";\r
+  }\r
+\r
+  grouping mac-fc-pac {\r
+    container mac-fc-capability {\r
+      config false;\r
+      uses mac-fc-capability;\r
+      description\r
+        "none";\r
+    }\r
+    container mac-fc-configuration {\r
+      uses mac-fc-configuration;\r
+      description\r
+        "none";\r
+    }\r
+    container mac-fc-status {\r
+      config false;\r
+      uses mac-fc-status;\r
+      description\r
+        "none";\r
+    }\r
+    container mac-fc-current-problems {\r
+      config false;\r
+      uses mac-fc-current-problems;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fc-capability {\r
+    leaf admin-shut-down-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Manual switching on and off of the forwarding construct without deleting it (underlying OSI network layers are also not affected) is available.";\r
+    }\r
+    leaf-list supported-alarm-list {\r
+      type string;\r
+      default "Supported Alarms not yet defined.";\r
+      config false;\r
+      description\r
+        "Available alarms to be listed.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fc-configuration {\r
+    leaf fc-name {\r
+      type string;\r
+      default "FC name not yet defined.";\r
+      description\r
+        "Name of the ForwardingConstruct. Free text field to be filled by the operator.";\r
+    }\r
+    leaf fc-is-on {\r
+      type boolean;\r
+      default "false";\r
+      description\r
+        "Only effective if (adminShutDownIsAvail==true). true = Activation of the forwarding of frames. false = De-activation of the ForwardingConstruct without deleting it (underlying OSI network layers are not affected).";\r
+    }\r
+    leaf database-id {\r
+      type int32;\r
+      default "-1";\r
+      description\r
+        "The identity of the Filtering Database. Name in ieee802-dot1q-bridge.yang: database-id.";\r
+    }\r
+    leaf mac-address {\r
+      type string;\r
+      default "00:00:00:00:00:00";\r
+      description\r
+        "Configuration of a MAC address (unicast, multicast, broadcast), for which the device has forwarding and/or filtering information.";\r
+    }\r
+    leaf entry-kind {\r
+      type entry-kind-type;\r
+      default "ENTRY_KIND_TYPE_NOT_YET_DEFINED";\r
+      description\r
+        "The type of filtering entry. Whether static or dynamic. Static entries can be created, deleted, and retrieved. However, dynamic entries can only be deleted or retrieved by the management entity. Consequently, a Bridge is not required to accept a command that can alter the dynamic entries except delete a dynamic entry. Name in ieee802-dot1q-bridge.yang: entry-type.";\r
+    }\r
+    list problem-kind-severity-list {\r
+      key "problem-kind-name";\r
+      uses problem-kind-severity-type;\r
+      description\r
+        "Severity of the problem to be configured.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fc-status {\r
+    leaf fc-status {\r
+      type fc-status-type;\r
+      default "FC_STATUS_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "The status of this entry. Name in ieee802-dot1q-bridge.yang: status.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fc-current-problems {\r
+    list current-problem-list {\r
+      key "sequence-number";\r
+      config false;\r
+      uses mac-fc-current-problem-type;\r
+      description\r
+        "none";\r
+    }\r
+    leaf number-of-current-problems {\r
+      type int8;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Number of alarms, which are currently active on this interface.";\r
+    }\r
+    leaf time-of-latest-change {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "Date and time when the list of alarms has been changed for the last time.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * typedef statements\r
+   **************************************/ \r
+\r
+  typedef entry-kind-type {\r
+    type identityref {\r
+      base ENTRY_KIND_TYPE;\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  typedef fc-status-type {\r
+    type identityref {\r
+      base FC_STATUS_TYPE;\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /*********************************************\r
+   * grouping statements for complex data types\r
+   *******************************************/ \r
+\r
+  identity ENTRY_KIND_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity ENTRY_KIND_TYPE_STATIC {\r
+    base ENTRY_KIND_TYPE;\r
+    description\r
+      "Static entries can be created, deleted, and retrieved. Name in ieee802-dot1q-bridge.yang: static.";\r
+  }\r
+\r
+  identity ENTRY_KIND_TYPE_DYNAMIC {\r
+    base ENTRY_KIND_TYPE;\r
+    description\r
+      "Dynamic/learnt entries can only be deleted or retrieved. Name in ieee802-dot1q-bridge.yang: dynamic.";\r
+  }\r
+\r
+  identity ENTRY_KIND_TYPE_NOT_YET_DEFINED {\r
+    base ENTRY_KIND_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity FC_STATUS_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity FC_STATUS_TYPE_OTHER {\r
+    base FC_STATUS_TYPE;\r
+    description\r
+      "None of the following. This may include the case where some other object is being used to determine if and how frames addressed to the value of the corresponding instance of 'address' are being forwarded. Name in ieee802-dot1q-bridge.yang: other.";\r
+  }\r
+\r
+  identity FC_STATUS_TYPE_INVALID {\r
+    base FC_STATUS_TYPE;\r
+    description\r
+      "This entry is no longer valid (e.g., it was learned but has since aged out), but has not yet been flushed from the table. Name in ieee802-dot1q-bridge.yang: invalid.";\r
+  }\r
+\r
+  identity FC_STATUS_TYPE_LEARNED {\r
+    base FC_STATUS_TYPE;\r
+    description\r
+      "The value of the corresponding instance of the port node was learned and is being used. Name in ieee802-dot1q-bridge.yang: learned.";\r
+  }\r
+\r
+  identity FC_STATUS_TYPE_SELF {\r
+    base FC_STATUS_TYPE;\r
+    description\r
+      "The value of the corresponding instance of the address node representing one of the devices address. Name in ieee802-dot1q-bridge.yang: self.";\r
+  }\r
+\r
+  identity FC_STATUS_TYPE_MANAGEMENT {\r
+    base FC_STATUS_TYPE;\r
+    description\r
+      "The value of the corresponding instance of address node that is also the value of an existing instance. Name in ieee802-dot1q-bridge.yang: mgmt.";\r
+  }\r
+\r
+  identity FC_STATUS_TYPE_NOT_YET_DEFINED {\r
+    base FC_STATUS_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_NON_ALARMED {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_WARNING {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_MINOR {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_MAJOR {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_CRITICAL {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_NOT_YET_DEFINED {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * package super-types\r
+   **************************************/ \r
+\r
+  typedef severity-type {\r
+    type identityref {\r
+      base SEVERITY_TYPE;\r
+    }\r
+    description\r
+      "According to ITU-T M.3160";\r
+  }\r
+\r
+  grouping problem-kind-severity-type {\r
+    leaf problem-kind-name {\r
+      type string;\r
+      description\r
+        "Name of the alarm according to supportedAlarmList";\r
+    }\r
+    leaf problem-kind-severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_NOT_YET_DEFINED";\r
+      description\r
+        "Severity of this type of alarm.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fc-current-problem-type {\r
+    leaf problem-name {\r
+      type string;\r
+      default "Problem name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the alarm according to *Capability::supportedAlarmList.";\r
+    }\r
+    uses current-problem;\r
+    description\r
+      "none";\r
+  }\r
+}\r
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/yang/mac-fd-1-0.yang b/sdnr/wt/devicemanager-onf14/provider/src/main/yang/mac-fd-1-0.yang
new file mode 100644 (file)
index 0000000..9347f03
--- /dev/null
@@ -0,0 +1,585 @@
+module mac-fd-1-0 {\r
+  yang-version 1.1;\r
+  namespace "urn:onf:yang:mac-fd-1-0";\r
+  prefix mac-fd;\r
+\r
+  import ietf-yang-types {\r
+    prefix yang;\r
+  }\r
+  import core-model-1-4 {\r
+    prefix core-model;\r
+  }\r
+\r
+  organization\r
+    "openBackhaul.com proposal to Open Networking Foundation (ONF)";\r
+  contact\r
+    "WG Web : https://github.com/openBackhaul/Overview\r
+     WG List: MacFd@openBackhaul.com\r
+     Editor : Thorsten Heinze\r
+     Email  : Thorsten.Heinze@openBackhaul.com";\r
+  description\r
+    "Technology specific amendment to the ForwardingDomain class for documenting potential forwarding (Ethernet Switch) according to IEEE 802.1 .\r
+\r
+     Copyright 2019 openBackhaul.com\r
+\r
+     Licensed under the Apache License, Version 2.0 (the 'License');\r
+     you may not use this file except in compliance with the License.\r
+     You may obtain a copy of the License at\r
+     http://www.apache.org/licenses/LICENSE-2.0\r
+     Unless required by applicable law or agreed to in writing, software\r
+     distributed under the License is distributed on an 'AS IS' BASIS,\r
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+     See the License for the specific language governing permissions and\r
+     limitations under the License.";\r
+\r
+  revision 2020-08-26 {\r
+    description\r
+      "Model for the Transport SDN Pilot at Telefonica Germany.\r
+       Please view https://github.com/openBackhaul/macFd/issues for changes.";\r
+    reference\r
+      "https://github.com/openBackhaul/macFd/tree/tsp: Model definition\r
+       https://github.com/openBackhaul/onfCoreIm/tree/tsp: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";\r
+  }\r
+\r
+  identity LAYER_PROTOCOL_NAME_TYPE_MAC_LAYER {\r
+    base core-model:LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  augment "/core-model:control-construct/core-model:forwarding-domain" {\r
+    when "derived-from-or-self(./core-model:layer-protocol-name, 'vlan-fd:LAYER_PROTOCOL_NAME_TYPE_MAC_LAYER')";\r
+    uses mac-fd-spec;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * package notifications\r
+   **************************************/ \r
+\r
+  notification object-creation-notification {\r
+    uses object-creation-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping object-creation-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts object creation notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-type {\r
+      type string;\r
+      default "Type of created object not specified.";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  notification object-deletion-notification {\r
+    uses object-deletion-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping object-deletion-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts object deletion notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  notification attribute-value-changed-notification {\r
+    uses attribute-value-changed-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping attribute-value-changed-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts attribute value changed notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf attribute-name {\r
+      type string;\r
+      default "Attribute name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the attribute that has been changed.";\r
+    }\r
+    leaf new-value {\r
+      type string;\r
+      default "New value not specified.";\r
+      config false;\r
+      description\r
+        "Attribute value converted to a string (xml, json, ...)";\r
+    }\r
+    description\r
+      "To be sent when an attribute has changed and one or more controllers have to update their data.";\r
+  }\r
+\r
+  notification problem-notification {\r
+    uses problem-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping problem-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts problem notifications";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf problem {\r
+      type string;\r
+      default "Problem name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the problem according to *Capability::supportedAlarmList";\r
+    }\r
+    leaf severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_WARNING";\r
+      config false;\r
+      description\r
+        "Severity of the problem according to *Configuration::problemSeverityList";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * grouping statements for object classes\r
+   **************************************/ \r
+  /****************************************\r
+   * package super-classes\r
+   **************************************/ \r
+\r
+  grouping current-problem {\r
+    leaf sequence-number {\r
+      type int16;\r
+      config false;\r
+      description\r
+        "Unique sequence number of the current problem object.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf problem-severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "Severity of the alarm.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fd-spec {\r
+    container mac-fd-pac {\r
+      uses mac-fd-pac;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "The database that holds static and learned entries describing the MAC forwarding. Name in ieee802-dot1q-bridge.yang: filtering-database.";\r
+  }\r
+\r
+  grouping mac-fd-pac {\r
+    container mac-fd-capability {\r
+      config false;\r
+      uses mac-fd-capability;\r
+      description\r
+        "none";\r
+    }\r
+    container mac-fd-configuration {\r
+      uses mac-fd-configuration;\r
+      description\r
+        "none";\r
+    }\r
+    container mac-fd-status {\r
+      config false;\r
+      uses mac-fd-status;\r
+      description\r
+        "none";\r
+    }\r
+    container mac-fd-current-problems {\r
+      config false;\r
+      uses mac-fd-current-problems;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fd-capability {\r
+    leaf maximum-number-of-entries {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "The maximum number of entries that can be held in the FDB. Name in ieee802-dot1q-bridge.yang: size.";\r
+    }\r
+    leaf admin-shut-down-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Manual switching on and off of the forwarding domain without deleting it (underlying OSI network layers are also not affected) is available.";\r
+    }\r
+    leaf maintenance-timer-range {\r
+      type string;\r
+      default "Range of the maintenance timer not yet defined.";\r
+      config false;\r
+      description\r
+        "Available time periods for maintenance configurations to be described. Concrete values shall be separated by commas (e.g. '10, 60, 360'). Ranges shall be expressed as two values separated by a minus (e.g. '10-360').";\r
+    }\r
+    leaf-list supported-alarm-list {\r
+      type string;\r
+      default "Supported Alarms Not Yet Defined";\r
+      config false;\r
+      description\r
+        "Available alarms to be listed.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fd-configuration {\r
+    leaf fd-name {\r
+      type string;\r
+      default "Forwarding Domain name not yet defined.";\r
+      description\r
+        "Name of the ForwardingDomain. Free text field to be filled by the operator.";\r
+    }\r
+    leaf fd-is-on {\r
+      type boolean;\r
+      default "false";\r
+      description\r
+        "Only effective if (adminShutDownIsAvail==true). true = Activation of the ForwardingDomain. false = De-activation of the ForwardingDomain without deleting it (underlying OSI network layers are not affected).";\r
+    }\r
+    leaf mac-address {\r
+      type string;\r
+      default "00:00:00:00:00:00";\r
+      description\r
+        "Configuration of the MAC address of a switch or virtual switch, which is defined by some VLAN.";\r
+    }\r
+    leaf aging-time {\r
+      type int32;\r
+      units "s";\r
+      default "-1";\r
+      description\r
+        "The timeout period (10..10,000,000) in seconds for aging out dynamically-learned forwarding information. Name in ieee802-dot1q-bridge.yang: aging-time.";\r
+    }\r
+    leaf maintenance-timer {\r
+      type int32;\r
+      units "s";\r
+      default "-1";\r
+      description\r
+        "Time of existence of any maintenance configuration. false = maintenance timer is switched off. Valid values are defined in *Capability::maintenanceTimerRange.";\r
+    }\r
+    list problem-kind-severity-list {\r
+      key "problem-kind-name";\r
+      uses problem-kind-severity-type;\r
+      description\r
+        "Severity of each entry of the SupportedAlarmList to be configured.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fd-status {\r
+    leaf mac-address-cur {\r
+      type string;\r
+      default "00:00:00:00:00:00";\r
+      config false;\r
+      description\r
+        "MAC address assigned to a switch or virtual switch, which is defined by some VLAN.";\r
+    }\r
+    leaf number-of-static-entries-cur {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "The number of Static Filtering entries currently in the FDB. Name in ieee802-dot1q-bridge.yang: static-entries.";\r
+    }\r
+    leaf number-of-dynamic-entries-cur {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "The number of Dynamic Filtering entries currently in the FDB. Name in ieee802-dot1q-bridge.yang: dynamic-entries.";\r
+    }\r
+    leaf number-of-mac-registrations-cur {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "The number of MAC Address Registration entries currently in the FDB. Name in ieee802-dot1q-bridge.yang: mac-address-registration-entries.";\r
+    }\r
+    leaf fd-status {\r
+      type fd-status-type;\r
+      default "FD_STATUS_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "Operational status of the forwarding domain.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fd-current-problems {\r
+    list current-problem-list {\r
+      key "sequence-number";\r
+      config false;\r
+      uses mac-fd-current-problem-type;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * typedef statements\r
+   **************************************/ \r
+  /*********************************************\r
+   * grouping statements for complex data types\r
+   *******************************************/ \r
+\r
+  identity SEVERITY_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_NON_ALARMED {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_WARNING {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_MINOR {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_MAJOR {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_CRITICAL {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_NOT_YET_DEFINED {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_UP {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Ready to pass packets.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_DOWN {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "The interface does not pass any packets.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_TESTING {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "In some test mode.  No operational packets can be passed.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_UNKNOWN {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Status cannot be determined for some reason.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_DORMANT {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Waiting for some external event.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_NOT_PRESENT {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Some component (typically hardware) is missing.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_LOWER_LAYER_DOWN {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Down due to state of lower-layer interface(s).";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_ADMIN_DOWN {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Down due to configuration.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_NOT_YET_DEFINED {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * package super-types\r
+   **************************************/ \r
+\r
+  typedef severity-type {\r
+    type identityref {\r
+      base SEVERITY_TYPE;\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  typedef fd-status-type {\r
+    type identityref {\r
+      base FD_STATUS_TYPE;\r
+    }\r
+    description\r
+      "Current Status of the Forwarding Domain";\r
+  }\r
+\r
+  grouping problem-kind-severity-type {\r
+    leaf problem-kind-name {\r
+      type string;\r
+      description\r
+        "Name of the alarm according to SupportedAlarmList";\r
+    }\r
+    leaf problem-kind-severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_NOT_YET_DEFINED";\r
+      description\r
+        "Severity of this type of alarm.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping mac-fd-current-problem-type {\r
+    leaf problem-name {\r
+      type string;\r
+      default "Problem name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the alarm according to SupportedAlarmList";\r
+    }\r
+    uses current-problem;\r
+    description\r
+      "none";\r
+  }\r
+}\r
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/yang/vlan-fc-1-0.yang b/sdnr/wt/devicemanager-onf14/provider/src/main/yang/vlan-fc-1-0.yang
new file mode 100644 (file)
index 0000000..5b6cf7b
--- /dev/null
@@ -0,0 +1,523 @@
+module vlan-fc-1-0 {\r
+  yang-version 1.1;\r
+  namespace "urn:onf:yang:vlan-fc-1-0";\r
+  prefix vlan-fc;\r
+\r
+  import ietf-yang-types {\r
+    prefix yang;\r
+  }\r
+  import core-model-1-4 {\r
+    prefix core-model;\r
+  }\r
+\r
+  organization\r
+    "openBackhaul.com proposal to Open Networking Foundation (ONF)";\r
+  contact\r
+    "WG Web : https://github.com/openBackhaul/Overview\r
+     WG List: VlanFc@openBackhaul.com\r
+     Editor : Thorsten Heinze\r
+     Email  : Thorsten.Heinze@openBackhaul.com";\r
+  description\r
+    "Technology specific Forwarding Construct for VLANs according to IEEE 802.1Q-2018.\r
+\r
+     Copyright 2019 openBackhaul.com\r
+\r
+     Licensed under the Apache License, Version 2.0 (the 'License');\r
+     you may not use this file except in compliance with the License.\r
+     You may obtain a copy of the License at\r
+     http://www.apache.org/licenses/LICENSE-2.0\r
+     Unless required by applicable law or agreed to in writing, software\r
+     distributed under the License is distributed on an 'AS IS' BASIS,\r
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+     See the License for the specific language governing permissions and\r
+     limitations under the License.";\r
+\r
+  revision 2020-08-26 {\r
+    description\r
+      "Model for the Transport SDN Pilot at Telefonica Germany\r
+       Please view https://github.com/openBackhaul/vlanFc/issues for changes.";\r
+    reference\r
+      "https://github.com/openBackhaul/vlanFc/tree/tsp: Model definition\r
+       https://github.com/openBackhaul/onfCoreIm/tree/tsp: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";\r
+  }\r
+  revision 2019-08-19 {\r
+    description\r
+      "Model for the Transport SDN Pilot at Telefonica Germany.\r
+       Please view https://github.com/openBackhaul/vlanFd/issues for changes.";\r
+    reference\r
+      "https://github.com/openBackhaul/vlanFc/tree/tsp: Model definition\r
+       https://github.com/openBackhaul/onfCoreIm/tree/tsp: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";\r
+  }\r
+\r
+  identity LAYER_PROTOCOL_NAME_TYPE_VLAN_LAYER {\r
+    base core-model:LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  augment "/core-model:control-construct/core-model:forwarding-domain/core-model:fc" {\r
+    when "derived-from-or-self(./core-model:layer-protocol-name, 'vlan-fc:LAYER_PROTOCOL_NAME_TYPE_VLAN_LAYER')";\r
+    uses vlan-fc-spec;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * package notifications\r
+   **************************************/ \r
+\r
+  notification object-creation-notification {\r
+    uses object-creation-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping object-creation-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts object creation notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:fc/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-type {\r
+      type string;\r
+      default "Type of created object not specified.";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  notification object-deletion-notification {\r
+    uses object-deletion-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping object-deletion-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts object deletion notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:fc/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  notification attribute-value-changed-notification {\r
+    uses attribute-value-changed-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping attribute-value-changed-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts attribute value changed notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:fc/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf attribute-name {\r
+      type string;\r
+      default "Attribute name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the attribute that has been changed.";\r
+    }\r
+    leaf new-value {\r
+      type string;\r
+      default "New value not specified.";\r
+      config false;\r
+      description\r
+        "Attribute value converted to a string (xml, json, ...)";\r
+    }\r
+    description\r
+      "To be sent when an attribute has changed and one or more controllers have to update their data.";\r
+  }\r
+\r
+  notification problem-notification {\r
+    uses problem-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping problem-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts problem notifications";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:fc/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf problem {\r
+      type string;\r
+      default "Problem name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the problem according to *Capability::supportedAlarmList";\r
+    }\r
+    leaf severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_WARNING";\r
+      config false;\r
+      description\r
+        "Severity of the problem according to VlanFc::VlanFcConfiguration::problemSeverityList";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * grouping statements for object classes\r
+   **************************************/ \r
+  /****************************************\r
+   * package super-classes\r
+   **************************************/ \r
+\r
+  grouping current-problem {\r
+    leaf sequence-number {\r
+      type int16;\r
+      config false;\r
+      description\r
+        "Unique sequence number of the current problem object.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf problem-severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "Severity of the alarm.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fc-spec {\r
+    container vlan-fc-pac {\r
+      uses vlan-fc-pac;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "Represents the VLAN, which is configured on the C-VLAN or S-VLAN Component. Name in ieee802-dot1q-bridge.yang: vlan.";\r
+  }\r
+\r
+  grouping vlan-fc-pac {\r
+    container vlan-fc-capability {\r
+      config false;\r
+      uses vlan-fc-capability;\r
+      description\r
+        "none";\r
+    }\r
+    container vlan-fc-configuration {\r
+      uses vlan-fc-configuration;\r
+      description\r
+        "none";\r
+    }\r
+    container vlan-fc-current-problems {\r
+      config false;\r
+      uses vlan-fc-current-problems;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fc-capability {\r
+    leaf-list supported-sub-layer-protocol-name-list {\r
+      type sub-layer-protocol-name-type;\r
+      default "SUB_LAYER_PROTOCOL_NAME_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "Lists the supported kinds of Components (implicitly defines the Ethertypes of the VLAN headers, which can be forwarded).";\r
+    }\r
+    leaf admin-shut-down-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Manual switching on and off of the forwarding construct without deleting it (underlying OSI network layers are also not affected) is available.";\r
+    }\r
+    leaf-list supported-alarm-list {\r
+      type string;\r
+      default "Supported Alarms not yet defined.";\r
+      config false;\r
+      description\r
+        "Available alarms to be listed.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fc-configuration {\r
+    leaf fc-name {\r
+      type string;\r
+      default "Interface name not yet defined.";\r
+      description\r
+        "Description of the VLAN, could be a name, could be a number. Free text of up to 32 letters to be filled by the operator. Name in ieee802-dot1q-bridge.yang: name.";\r
+    }\r
+    leaf fc-is-on {\r
+      type boolean;\r
+      default "false";\r
+      description\r
+        "Only effective if (adminShutDownIsAvail==true). true = Activation of the forwarding of frames with this VLAN ID. false = De-activation of the ForwardingConstruct without deleting it (underlying OSI network layers are not affected).";\r
+    }\r
+    leaf sub-layer-protocol-name {\r
+      type sub-layer-protocol-name-type;\r
+      default "SUB_LAYER_PROTOCOL_NAME_TYPE_NOT_YET_DEFINED";\r
+      description\r
+        "Type of VLAN (e.g. C-VLAN, S-VLAN), respectively Ethertype, which is forwarded.";\r
+    }\r
+    leaf vlan-id {\r
+      type int64;\r
+      default "-1";\r
+      description\r
+        "The VLAN ID, which identifies the frames to be forwarded. Range '1..4094 | 4096..4294967295'. Name in ieee802-dot1q-bridge.yang: vid.";\r
+    }\r
+    list problem-kind-severity-list {\r
+      key "problem-kind-name";\r
+      uses problem-kind-severity-type;\r
+      description\r
+        "Severity of the problem to be configured.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fc-current-problems {\r
+    list current-problem-list {\r
+      key "sequence-number";\r
+      config false;\r
+      uses vlan-fc-current-problem-type;\r
+      description\r
+        "none";\r
+    }\r
+    leaf number-of-current-problems {\r
+      type int8;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Number of alarms, which are currently active on this interface.";\r
+    }\r
+    leaf time-of-latest-change {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "Date and time when the list of alarms has been changed for the last time.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * typedef statements\r
+   **************************************/ \r
+\r
+  typedef sub-layer-protocol-name-type {\r
+    type identityref {\r
+      base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    }\r
+    description\r
+      "Represents the type of Component. Name in ieee802-dot1q-bridge.yang: type-of-component.";\r
+  }\r
+\r
+  /*********************************************\r
+   * grouping statements for complex data types\r
+   *******************************************/ \r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_C_VLAN_COMPONENT {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "Base identity for a C-VLAN component. Name in ieee802-dot1q-bridge.yang: c-vlan-component.";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_S_VLAN_COMPONENT {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "Base identity for a S-VLAN component. Name in ieee802-dot1q-bridge.yang: s-vlan-component.";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_D_BRIDGE_COMPONENT {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "Base identity for a VLAN unaware component. Name in ieee802-dot1q-bridge.yang: d-bridge-component.";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_EDGE_RELAY_COMPONENT {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "Base identity for an EVB station ER component. Name in ieee802-dot1q-bridge.yang: edge-relay-component. ";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_NOT_YET_DEFINED {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_NON_ALARMED {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_WARNING {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_MINOR {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_MAJOR {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_CRITICAL {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_NOT_YET_DEFINED {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * package super-types\r
+   **************************************/ \r
+\r
+  typedef severity-type {\r
+    type identityref {\r
+      base SEVERITY_TYPE;\r
+    }\r
+    description\r
+      "According to ITU-T M.3160";\r
+  }\r
+\r
+  grouping problem-kind-severity-type {\r
+    leaf problem-kind-name {\r
+      type string;\r
+      description\r
+        "Name of the alarm according to supportedAlarmList";\r
+    }\r
+    leaf problem-kind-severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_NOT_YET_DEFINED";\r
+      description\r
+        "Severity of this type of alarm.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fc-current-problem-type {\r
+    leaf problem-name {\r
+      type string;\r
+      default "Problem name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the alarm according to VlanFc::VlanFcCapability::supportedAlarmList.";\r
+    }\r
+    uses current-problem;\r
+    description\r
+      "none";\r
+  }\r
+}\r
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/main/yang/vlan-fd-1-0.yang b/sdnr/wt/devicemanager-onf14/provider/src/main/yang/vlan-fd-1-0.yang
new file mode 100644 (file)
index 0000000..b3d67ee
--- /dev/null
@@ -0,0 +1,836 @@
+module vlan-fd-1-0 {\r
+  yang-version 1.1;\r
+  namespace "urn:onf:yang:vlan-fd-1-0";\r
+  prefix vlan-fd;\r
+\r
+  import ietf-yang-types {\r
+    prefix yang;\r
+  }\r
+  import core-model-1-4 {\r
+    prefix core-model;\r
+  }\r
+  import vlan-interface-1-0 {\r
+    prefix vlan-interface;\r
+  }\r
+\r
+  organization\r
+    "openBackhaul.com proposal to Open Networking Foundation (ONF)";\r
+  contact\r
+    "WG Web : https://github.com/openBackhaul/Overview\r
+     WG List: VlanFd@openBackhaul.com\r
+     Editor : Thorsten Heinze\r
+     Email  : Thorsten.Heinze@openBackhaul.com";\r
+  description\r
+    "Technology specific Forwarding Domain for VLAN Components according to IEEE 802.1Q-2018.\r
+\r
+     Copyright 2019 openBackhaul.com\r
+\r
+     Licensed under the Apache License, Version 2.0 (the 'License');\r
+     you may not use this file except in compliance with the License.\r
+     You may obtain a copy of the License at\r
+     http://www.apache.org/licenses/LICENSE-2.0\r
+     Unless required by applicable law or agreed to in writing, software\r
+     distributed under the License is distributed on an 'AS IS' BASIS,\r
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+     See the License for the specific language governing permissions and\r
+     limitations under the License.";\r
+\r
+  revision 2020-08-26 {\r
+    description\r
+      "Model for the Transport SDN Pilot at Telefonica Germany.\r
+       Please view https://github.com/openBackhaul/vlanFd/issues for changes.";\r
+    reference\r
+      "https://github.com/openBackhaul/vlanFd/tree/tsp: Model definition\r
+       https://github.com/openBackhaul/onfCoreIm/tree/tsp: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";\r
+  }\r
+  revision 2019-08-19 {\r
+    description\r
+      "Model for the Transport SDN Pilot at Telefonica Germany.\r
+       Please view https://github.com/openBackhaul/vlanFd/issues for changes.";\r
+    reference\r
+      "https://github.com/openBackhaul/vlanFd/tree/tsp: Model definition\r
+       https://github.com/openBackhaul/onfCoreIm/tree/tsp: ONF TR-512 Core IM incl. Profile and enhanced Equipment definition";\r
+  }\r
+\r
+  identity LAYER_PROTOCOL_NAME_TYPE_VLAN_LAYER {\r
+    base core-model:LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  augment "/core-model:control-construct/core-model:forwarding-domain" {\r
+    when "derived-from-or-self(./core-model:layer-protocol-name, 'vlan-interface:LAYER_PROTOCOL_NAME_TYPE_VLAN_LAYER')";\r
+    uses vlan-fd-spec;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * package notifications\r
+   **************************************/ \r
+\r
+  notification object-creation-notification {\r
+    uses object-creation-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping object-creation-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts object creation notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-type {\r
+      type string;\r
+      default "Type of created object not specified.";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  notification object-deletion-notification {\r
+    uses object-deletion-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping object-deletion-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts object deletion notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  notification attribute-value-changed-notification {\r
+    uses attribute-value-changed-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping attribute-value-changed-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts attribute value changed notifications.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf attribute-name {\r
+      type string;\r
+      default "Attribute name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the attribute that has been changed.";\r
+    }\r
+    leaf new-value {\r
+      type string;\r
+      default "New value not specified.";\r
+      config false;\r
+      description\r
+        "Attribute value converted to a string (xml, json, ...)";\r
+    }\r
+    description\r
+      "To be sent when an attribute has changed and one or more controllers have to update their data.";\r
+  }\r
+\r
+  notification problem-notification {\r
+    uses problem-notification;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping problem-notification {\r
+    leaf counter {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Counts problem notifications";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf object-id-ref {\r
+      type leafref {\r
+        path "/core-model:control-construct/core-model:forwarding-domain/core-model:uuid";\r
+        require-instance false;\r
+      }\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf problem {\r
+      type string;\r
+      default "Problem name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the problem according to *Capability::supportedAlarmList";\r
+    }\r
+    leaf severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_WARNING";\r
+      config false;\r
+      description\r
+        "Severity of the problem according to *Configuration::problemSeverityList";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * grouping statements for object classes\r
+   **************************************/ \r
+  /****************************************\r
+   * package super-classes\r
+   **************************************/ \r
+\r
+  grouping current-problem {\r
+    leaf sequence-number {\r
+      type int16;\r
+      config false;\r
+      description\r
+        "Unique sequence number of the current problem object.";\r
+    }\r
+    leaf timestamp {\r
+      type yang:date-and-time;\r
+      default "2010-11-20T14:00:00+01:00";\r
+      config false;\r
+      description\r
+        "none";\r
+    }\r
+    leaf problem-severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "Severity of the alarm.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fd-spec {\r
+    container vlan-fd-pac {\r
+      uses vlan-fd-pac;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "The set of components associated with a given Bridge. For example, - A TPMR is associated with a single VLAN unaware component. - A Customer VLAN Bridge is associated with a single VLAN aware component. - A Provider Bridge is associated with a single S-VLAN component and zero or more C-VLAN components. Name in ieee802-dot1q-bridge.yang: component.";\r
+  }\r
+\r
+  grouping vlan-fd-pac {\r
+    container vlan-fd-capability {\r
+      config false;\r
+      uses vlan-fd-capability;\r
+      description\r
+        "none";\r
+    }\r
+    container vlan-fd-configuration {\r
+      uses vlan-fd-configuration;\r
+      description\r
+        "none";\r
+    }\r
+    container vlan-fd-status {\r
+      config false;\r
+      uses vlan-fd-status;\r
+      description\r
+        "none";\r
+    }\r
+    container vlan-fd-current-problems {\r
+      config false;\r
+      uses vlan-fd-current-problems;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fd-capability {\r
+    leaf-list supported-sub-layer-protocol-name-list {\r
+      type sub-layer-protocol-name-type;\r
+      default "SUB_LAYER_PROTOCOL_NAME_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "Lists the supported kinds of Components. ";\r
+    }\r
+    leaf component-id {\r
+      type int32;\r
+      config false;\r
+      description\r
+        "Unique identifier for a particular Bridge component within the system. Name in ieee802-dot1q-bridge.yang: id.";\r
+    }\r
+    leaf extended-filtering-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Component can perform filtering on individual multicast addresses controlled by MMRP (Multiple MAC Registration Protocol). Name in ieee802-dot1q-bridge.yang: extended-filtering.";\r
+    }\r
+    leaf traffic-classes-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Component can map the Priority values into multiple traffic classes (there is more than one traffic class at the device). Name in ieee802-dot1q-bridge.yang: traffic-classes.";\r
+    }\r
+    leaf static-entries-on-individual-ports-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Static entries per port are available. Name in ieee802-dot1q-bridge.yang: static-entry-individual-port.";\r
+    }\r
+    leaf independent-vlan-learning-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Component supports Independent VLAN Learning (IVL). Name in ieee802-dot1q-bridge.yang: ivl-capable.";\r
+    }\r
+    leaf shared-vlan-learning-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Component supports Shared VLAN Learning (SVL). Name in ieee802-dot1q-bridge.yang: svl-capable.";\r
+    }\r
+    leaf hybrid-vlan-learning-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Component supports both Independent and Shared VLAN Learning simultaneously. Name in ieee802-dot1q-bridge.yang: hybrid-capable.";\r
+    }\r
+    leaf configurable-port-vlan-id-tagging-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Component supports setting the egress status (VLAN-tagged or Untagged) on each port. Name in ieee802-dot1q-bridge.yang: configurable-pvid-tagging.";\r
+    }\r
+    leaf multiple-local-bridges-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Can support multiple local Bridges, outside the scope of 802.1Q defined VLANs. Name in ieee802-dot1q-bridge.yang: local-vlan-capable.";\r
+    }\r
+    leaf supported-version {\r
+      type int16;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "The version number supported. Name in ieee802-dot1q-bridge.yang: version.";\r
+    }\r
+    leaf maximum-number-of-vlan-ids {\r
+      type int16;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "The maximum number of VLAN IDs supported. Name in ieee802-dot1q-bridge.yang: max-vids.";\r
+    }\r
+    leaf overriding-default-port-vlan-id-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Component supports overridding the default PVID on each port. Name in ieee802-dot1q-bridge.yang: override-default-pvid.";\r
+    }\r
+    leaf protocol-frame-format {\r
+      type protocol-frame-format-type;\r
+      config false;\r
+      description\r
+        "Only effective if (portAndProtocolBasedVlanIsAvail==true). The data-link encapsulation format or the detagged_frame_type in a Protocol Template. Name in ieee802-dot1q-bridge.yang: protocol-template.";\r
+    }\r
+    leaf maximum-number-of-msti {\r
+      type int16;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Maximum number of Multiple Spanning Tree Instances (MSTIs) supported within an MST region (i.e., the number of spanning tree instances that can be supported in addition to the CIST), for MST Bridges. For SST Bridges, this parameter may be either omitted or reported as 0.  Name in ieee802-dot1q-bridge.yang: max-msti.";\r
+    }\r
+    leaf admin-shut-down-is-avail {\r
+      type boolean;\r
+      default "false";\r
+      config false;\r
+      description\r
+        "true = Manual switching on and off of the forwarding domain without deleting it (underlying OSI network layers are also not affected) is available.";\r
+    }\r
+    leaf maintenance-timer-range {\r
+      type string;\r
+      default "Range of the maintenance timer not yet defined.";\r
+      config false;\r
+      description\r
+        "Available time periods for maintenance configurations to be described. Concrete values shall be separated by commas (e.g. '10, 60, 360'). Ranges shall be expressed as two values separated by a minus (e.g. '10-360').";\r
+    }\r
+    leaf-list supported-alarm-list {\r
+      type string;\r
+      default "Supported Alarms Not Yet Defined";\r
+      config false;\r
+      description\r
+        "Available alarms to be listed.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fd-configuration {\r
+    leaf fd-name {\r
+      type string;\r
+      default "Forwarding Domain name not yet defined.";\r
+      description\r
+        "The name of the Component. Free text field to be filled by the operator. Name in ieee802-dot1q-bridge.yang: name.";\r
+    }\r
+    leaf fd-is-on {\r
+      type boolean;\r
+      default "false";\r
+      description\r
+        "Only effective if (adminShutDownIsAvail==true). true = Activation of the Component. false = De-activation of the forwarding domain without deleting it (underlying OSI network layers are not affected).";\r
+    }\r
+    leaf sub-layer-protocol-name {\r
+      type sub-layer-protocol-name-type;\r
+      default "SUB_LAYER_PROTOCOL_NAME_TYPE_NOT_YET_DEFINED";\r
+      description\r
+        "The type of Component used to classify a particular Bridge component within a Bridge system comprising multiple components. Name in ieee802-dot1q-bridge.yang: type.\n";\r
+    }\r
+    leaf mac-address {\r
+      type string;\r
+      default "00:00:00:00:00:00";\r
+      description\r
+        "Unique EUI-48 Universally Administered MAC address configured on a Bridge Component. Name in ieee802-dot1q-bridge.yang: address.";\r
+    }\r
+    leaf traffic-classes-is-on {\r
+      type boolean;\r
+      default "false";\r
+      description\r
+        "Only effective if (trafficClassesIsAvail==true). true = Traffic Classes are enabled on this Bridge Component. false = Bridge Component operates with a single priority level for all traffic. Name in ieee802-dot1q-bridge.yang: traffic-class-enabled.";\r
+    }\r
+    list protocol-group-list {\r
+      key "db-index";\r
+      uses protocol-group-type;\r
+      description\r
+        "Only effective if (portAndProtocolBasedVlanIsAvail==true). List of the protocol group database entries. Name in ieee802-dot1q-bridge.yang: protocol-group-database.";\r
+    }\r
+    leaf maintenance-timer {\r
+      type int32;\r
+      units "s";\r
+      default "-1";\r
+      description\r
+        "Time of existence of any maintenance configuration. 0 = maintenance timer is switched off. Valid values are defined in *Capability::maintenanceTimerRange.";\r
+    }\r
+    list problem-kind-severity-list {\r
+      key "problem-kind-name";\r
+      uses problem-kind-severity-type;\r
+      description\r
+        "Severity of each entry of the SupportedAlarmList to be configured.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fd-status {\r
+    leaf mac-address-cur {\r
+      type string;\r
+      default "00:00:00:00:00:00";\r
+      config false;\r
+      description\r
+        "Unique EUI-48 Universally Administered MAC address assigned to a Bridge Component. Name in ieee802-dot1q-bridge.yang: address.";\r
+    }\r
+    leaf number-of-ports-cur {\r
+      type int16;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "Number of Bridge Ports associated with the Bridge Component. Values between 1 and 4095. Name in ieee802-dot1q-bridge.yang: ports.";\r
+    }\r
+    leaf number-of-static-vlan-registrations-cur {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "The number of Static VLAN Registration entries currently in the FDB. Name in ieee802-dot1q-bridge.yang: static-vlan-registration-entries.";\r
+    }\r
+    leaf number-of-dynamic-vlan-registrations-cur {\r
+      type int32;\r
+      default "-1";\r
+      config false;\r
+      description\r
+        "The number of Dynamic VLAN Registration entries currently in the FDB. Name in ieee802-dot1q-bridge.yang: static-vlan-registration-entries.";\r
+    }\r
+    leaf fd-status {\r
+      type fd-status-type;\r
+      default "FD_STATUS_TYPE_NOT_YET_DEFINED";\r
+      config false;\r
+      description\r
+        "Operational status of the forwarding domain.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fd-current-problems {\r
+    list current-problem-list {\r
+      key "sequence-number";\r
+      config false;\r
+      uses vlan-fd-current-problem-type;\r
+      description\r
+        "none";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * typedef statements\r
+   **************************************/ \r
+\r
+  typedef sub-layer-protocol-name-type {\r
+    type identityref {\r
+      base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    }\r
+    description\r
+      "Represents the type of Component. Name in ieee802-dot1q-bridge.yang: type-of-component.";\r
+  }\r
+\r
+  typedef protocol-frame-format-type {\r
+    type identityref {\r
+      base PROTOCOL_FRAME_FORMAT_TYPE;\r
+    }\r
+    description\r
+      "A value representing the frame format to be matched. Name in ieee802-dot1q-bridge.yang: protocol-frame-format-type.";\r
+  }\r
+\r
+  /*********************************************\r
+   * grouping statements for complex data types\r
+   *******************************************/ \r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_C_VLAN_COMPONENT {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "c-vlan-component. Base identity for a C-VLAN component. Name in ieee802-dot1q-bridge.yang: c-vlan-component.";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_S_VLAN_COMPONENT {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "s-vlan-component. Base identity for a S-VLAN component. Name in ieee802-dot1q-bridge.yang: s-vlan-component.";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_D_BRIDGE_COMPONENT {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "d-bridge-component. Base identity for a VLAN unaware component. Name in ieee802-dot1q-bridge.yang: d-bridge-component.";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_EDGE_RELAY_COMPONENT {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "edge-relay-component. Base identity for an EVB station ER component. Name in ieee802-dot1q-bridge.yang: edge-relay-component. ";\r
+  }\r
+\r
+  identity SUB_LAYER_PROTOCOL_NAME_TYPE_NOT_YET_DEFINED {\r
+    base SUB_LAYER_PROTOCOL_NAME_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity PROTOCOL_FRAME_FORMAT_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity PROTOCOL_FRAME_FORMAT_TYPE_ETHERNET {\r
+    base PROTOCOL_FRAME_FORMAT_TYPE;\r
+    description\r
+      "Ethernet frame format. Name in ieee802-dot1q-bridge.yang: Ethernet.";\r
+  }\r
+\r
+  identity PROTOCOL_FRAME_FORMAT_TYPE_RFC1042 {\r
+    base PROTOCOL_FRAME_FORMAT_TYPE;\r
+    description\r
+      "RFC 1042 frame format. Name in ieee802-dot1q-bridge.yang: rfc1042.";\r
+  }\r
+\r
+  identity PROTOCOL_FRAME_FORMAT_TYPE_SNAP8021H_ {\r
+    base PROTOCOL_FRAME_FORMAT_TYPE;\r
+    description\r
+      "SNAP 802.1H frame format. Name in ieee802-dot1q-bridge.yang: snap8021H.";\r
+  }\r
+\r
+  identity PROTOCOL_FRAME_FORMAT_TYPE_SNAP_OTHER {\r
+    base PROTOCOL_FRAME_FORMAT_TYPE;\r
+    description\r
+      "Other SNAP frame format. Name in ieee802-dot1q-bridge.yang: snapOther.";\r
+  }\r
+\r
+  identity PROTOCOL_FRAME_FORMAT_TYPE_LLC_OTHER {\r
+    base PROTOCOL_FRAME_FORMAT_TYPE;\r
+    description\r
+      "Other LLC frame format. Name in ieee802-dot1q-bridge.yang: llcOther.";\r
+  }\r
+\r
+  identity PROTOCOL_FRAME_FORMAT_TYPE_NOT_YET_DEFINED {\r
+    base PROTOCOL_FRAME_FORMAT_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_NON_ALARMED {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_WARNING {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_MINOR {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_MAJOR {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_CRITICAL {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity SEVERITY_TYPE_NOT_YET_DEFINED {\r
+    base SEVERITY_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE {\r
+    description\r
+      "none";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_UP {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Ready to pass packets.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_DOWN {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "The interface does not pass any packets.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_TESTING {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "In some test mode.  No operational packets can be passed.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_UNKNOWN {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Status cannot be determined for some reason.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_DORMANT {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Waiting for some external event.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_NOT_PRESENT {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Some component (typically hardware) is missing.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_LOWER_LAYER_DOWN {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Down due to state of lower-layer interface(s).";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_ADMIN_DOWN {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "Down due to configuration.";\r
+  }\r
+\r
+  identity FD_STATUS_TYPE_NOT_YET_DEFINED {\r
+    base FD_STATUS_TYPE;\r
+    description\r
+      "none";\r
+  }\r
+\r
+  /****************************************\r
+   * package super-types\r
+   **************************************/ \r
+\r
+  typedef severity-type {\r
+    type identityref {\r
+      base SEVERITY_TYPE;\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  typedef fd-status-type {\r
+    type identityref {\r
+      base FD_STATUS_TYPE;\r
+    }\r
+    description\r
+      "Current Status of the Forwarding Domain";\r
+  }\r
+\r
+  grouping problem-kind-severity-type {\r
+    leaf problem-kind-name {\r
+      type string;\r
+      description\r
+        "Name of the alarm according to SupportedAlarmList";\r
+    }\r
+    leaf problem-kind-severity {\r
+      type severity-type;\r
+      default "SEVERITY_TYPE_NOT_YET_DEFINED";\r
+      description\r
+        "Severity of this type of alarm.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping protocol-group-type {\r
+    leaf db-index {\r
+      type uint16;\r
+      description\r
+        "The protocol group database index. Name in ieee802-dot1q-bridge.yang: db-index.";\r
+    }\r
+    leaf protocol-group-id {\r
+      type int32;\r
+      default "-1";\r
+      description\r
+        "Designates a group of protocols in the Protocol Group Database. Name in ieee802-dot1q-bridge.yang: group-id.";\r
+    }\r
+    leaf protocol-frame-format {\r
+      type protocol-frame-format-type;\r
+      default "PROTOCOL_FRAME_FORMAT_TYPE_NOT_YET_DEFINED";\r
+      description\r
+        "The data-link encapsulation format or the detagged_frame_type in a Protocol Template. Name in ieee802-dot1q-bridge.yang: frame-format-type.";\r
+    }\r
+    leaf ethertype {\r
+      type string;\r
+      default "Ethertype not yet defined.";\r
+      description\r
+        "ethertype. Only relevant if (protocolFrameFormat==ETHERNET) OR (protocolFrameFormat==RFC1042) OR (protocolFrameFormat==SNAP8021H). Format containing the 16-bit IEEE 802 EtherType field. The EtherType value represented in the canonical order defined by IEEE 802. The canonical representation is using uppercase characters. Pattern '[0-9a-fA-F]{2}-[0-9a-fA-F]{2}'. Name in ieee802-dot1q-bridge.yang: ethertype.";\r
+    }\r
+    leaf protocol-id {\r
+      type string;\r
+      default "Protocol ID not yet defined.";\r
+      description\r
+        "Only effective if (protocolFrameFormat==SNAP_OTHER). Format containing the 40-bit protocol identifier (PID). The canonical representation is using uppercase characters. Pattern '[0-9a-fA-F]{2}(-[0-9a-fA-F]{2}){4}'. Name in ieee802-dot1q-bridge.yang: protocol-id.";\r
+    }\r
+    leaf-list llc-address {\r
+      type string;\r
+      default "LLC Address not yet defined.";\r
+      description\r
+        "Only effective if (protocolFrameFormat==LLC_OTHER). A pair of ISO/IEC 8802-2 DSAP and SSAP address field values, for matching frame formats of LLC_Other. The canonical representation is using uppercase characters. Pattern '[0-9a-fA-F]{2}-[0-9a-fA-F]{2}'. Name in ieee802-dot1q-bridge.yang: llc-address.";\r
+    }\r
+    description\r
+      "none";\r
+  }\r
+\r
+  grouping vlan-fd-current-problem-type {\r
+    leaf problem-name {\r
+      type string;\r
+      default "Problem name not specified.";\r
+      config false;\r
+      description\r
+        "Name of the alarm according to SupportedAlarmList";\r
+    }\r
+    uses current-problem;\r
+    description\r
+      "none";\r
+  }\r
+}\r
index 0cfd5ae..7dbbc22 100644 (file)
@@ -22,10 +22,12 @@ import org.junit.Test;
 import org.mockito.Mockito;
 import org.mockito.invocation.InvocationOnMock;
 import org.mockito.stubbing.Answer;
+import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.DataProvider;
 import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl.Onf14AirInterfaceNotificationListener;
 import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.test.mock.NetconfAccessorMock;
 import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
 import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.FaultService;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.NotificationService;
 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.AttributeValueChangedNotification;
@@ -46,6 +48,8 @@ public class TestOnf14AirInterfaceNotificationListener extends Mockito {
     private NodeId nodeId;
     private DeviceManagerServiceProvider serviceProvider;
     private FaultService faultService;
+    private DataProvider databaseService;
+    private NotificationService notificationService;
 
     private ObjectDeletionNotification deletionNotif;
     private ObjectCreationNotification creationNotif;
@@ -58,6 +62,8 @@ public class TestOnf14AirInterfaceNotificationListener extends Mockito {
         nodeId = mock(NodeId.class);
         serviceProvider = mock(DeviceManagerServiceProvider.class);
         faultService = mock(FaultService.class);
+        databaseService = mock(DataProvider.class);
+        notificationService = mock(NotificationService.class);
 
         problemNotif = mock(ProblemNotification.class);
         deletionNotif = mock(ObjectDeletionNotification.class);
@@ -70,7 +76,24 @@ public class TestOnf14AirInterfaceNotificationListener extends Mockito {
         when(problemNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-0abc-abcd-0123456789AB"));
         when(problemNotif.getProblem()).thenReturn("modulationIsDownShifted");
 
+        when(attrValChangedNotif.getAttributeName()).thenReturn("12345678-0123-2345-abcd-0123456789AB");
+        when(attrValChangedNotif.getCounter()).thenReturn(20);
+        when(attrValChangedNotif.getNewValue()).thenReturn("new-value");
+        when(attrValChangedNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(attrValChangedNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
+        when(creationNotif.getObjectType()).thenReturn("air-interface-name");
+        when(creationNotif.getCounter()).thenReturn(20);
+        when(creationNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(creationNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
+        when(deletionNotif.getCounter()).thenReturn(20);
+        when(deletionNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(deletionNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
         when(serviceProvider.getFaultService()).thenReturn(faultService);
+        when(serviceProvider.getDataProvider()).thenReturn(databaseService);
+        when(serviceProvider.getNotificationService()).thenReturn(notificationService);
     }
 
     @Test
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/TestOnf14EthernetContainerNotificationListener.java b/sdnr/wt/devicemanager-onf14/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/TestOnf14EthernetContainerNotificationListener.java
new file mode 100644 (file)
index 0000000..dedcf79
--- /dev/null
@@ -0,0 +1,194 @@
+/*
+ * ============LICENSE_START========================================================================
+ * ONAP : ccsdk feature sdnr wt
+ * =================================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
+ * =================================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ * ============LICENSE_END==========================================================================
+ */
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.mockito.Mockito;
+import org.mockito.invocation.InvocationOnMock;
+import org.mockito.stubbing.Answer;
+import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.DataProvider;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl.Onf14EthernetContainerNotificationListener;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.test.mock.NetconfAccessorMock;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.FaultService;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.NotificationService;
+import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.UniversalId;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.AttributeValueChangedNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ObjectCreationNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ObjectDeletionNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.ProblemNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPE;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPECRITICAL;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPEMAJOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPEMINOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPENONALARMED;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.ethernet.container._2._0.rev200121.SEVERITYTYPEWARNING;
+import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
+
+public class TestOnf14EthernetContainerNotificationListener extends Mockito {
+    private NetconfAccessor accessor;
+    private NodeId nodeId;
+    private DeviceManagerServiceProvider serviceProvider;
+    private FaultService faultService;
+    private DataProvider databaseService;
+    private NotificationService notificationService;
+
+    private ObjectDeletionNotification deletionNotif;
+    private ObjectCreationNotification creationNotif;
+    private ProblemNotification problemNotif;
+    private AttributeValueChangedNotification attrValChangedNotif;
+
+    @Before
+    public void init() {
+        accessor = mock(NetconfAccessorMock.class);
+        nodeId = mock(NodeId.class);
+        serviceProvider = mock(DeviceManagerServiceProvider.class);
+        faultService = mock(FaultService.class);
+        databaseService = mock(DataProvider.class);
+        notificationService = mock(NotificationService.class);
+
+        problemNotif = mock(ProblemNotification.class);
+        deletionNotif = mock(ObjectDeletionNotification.class);
+        creationNotif = mock(ObjectCreationNotification.class);
+        attrValChangedNotif = mock(AttributeValueChangedNotification.class);
+
+        when(accessor.getNodeId()).thenReturn(nodeId);
+        when(problemNotif.getCounter()).thenReturn(new Long(10));
+        when(problemNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+        when(problemNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-0abc-abcd-0123456789AB"));
+        when(problemNotif.getProblem()).thenReturn("modulationIsDownShifted");
+
+        when(attrValChangedNotif.getAttributeName()).thenReturn("12345678-0123-2345-abcd-0123456789AB");
+        when(attrValChangedNotif.getCounter()).thenReturn(new Long(20));
+        when(attrValChangedNotif.getNewValue()).thenReturn("new-value");
+        when(attrValChangedNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(attrValChangedNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
+        when(creationNotif.getObjectType()).thenReturn("air-interface-name");
+        when(creationNotif.getCounter()).thenReturn(new Long(20));
+        when(creationNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(creationNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
+        when(deletionNotif.getCounter()).thenReturn(new Long(20));
+        when(deletionNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(deletionNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
+        when(serviceProvider.getFaultService()).thenReturn(faultService);
+        when(serviceProvider.getDataProvider()).thenReturn(databaseService);
+        when(serviceProvider.getNotificationService()).thenReturn(notificationService);
+    }
+
+    @Test
+    public void testOtherNotif() {
+        Onf14EthernetContainerNotificationListener notifListener =
+                new Onf14EthernetContainerNotificationListener(accessor, serviceProvider);
+
+        notifListener.onObjectDeletionNotification(deletionNotif);
+        notifListener.onObjectCreationNotification(creationNotif);
+        notifListener.onAttributeValueChangedNotification(attrValChangedNotif);
+    }
+
+    @Test
+    public void testProblemNotifCritical() {
+        Onf14EthernetContainerNotificationListener notifListener =
+                new Onf14EthernetContainerNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPECRITICAL.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifMajor() {
+        Onf14EthernetContainerNotificationListener notifListener =
+                new Onf14EthernetContainerNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPEMAJOR.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifMinor() {
+        Onf14EthernetContainerNotificationListener notifListener =
+                new Onf14EthernetContainerNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPEMINOR.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifWarning() {
+        Onf14EthernetContainerNotificationListener notifListener =
+                new Onf14EthernetContainerNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPEWARNING.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifNonalarmed() {
+        Onf14EthernetContainerNotificationListener notifListener =
+                new Onf14EthernetContainerNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPENONALARMED.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifNull() {
+        Onf14EthernetContainerNotificationListener notifListener =
+                new Onf14EthernetContainerNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenReturn(null);
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+}
index ff4d1e1..d87e6d2 100644 (file)
@@ -78,7 +78,7 @@ public class TestOnf14NetworkElement extends Mockito {
 
         InstanceIdentifier<ControlConstruct> CONTROLCONSTRUCT_IID =
                 InstanceIdentifier.builder(ControlConstruct.class).build();
-        when(accessor.getTransactionUtils().readData(accessor.getDataBroker(), LogicalDatastoreType.OPERATIONAL,
+        when(accessor.getTransactionUtils().readData(accessor.getDataBroker(), LogicalDatastoreType.CONFIGURATION,
                 CONTROLCONSTRUCT_IID)).thenReturn(controlConstruct);
 
         List<UniversalId> topLevelEqList = null;
diff --git a/sdnr/wt/devicemanager-onf14/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/TestOnf14WireInterfaceNotificationListener.java b/sdnr/wt/devicemanager-onf14/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/TestOnf14WireInterfaceNotificationListener.java
new file mode 100644 (file)
index 0000000..267e9a8
--- /dev/null
@@ -0,0 +1,194 @@
+/*
+ * ============LICENSE_START========================================================================
+ * ONAP : ccsdk feature sdnr wt
+ * =================================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
+ * =================================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ * ============LICENSE_END==========================================================================
+ */
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.mockito.Mockito;
+import org.mockito.invocation.InvocationOnMock;
+import org.mockito.stubbing.Answer;
+import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.DataProvider;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl.Onf14WireInterfaceNotificationListener;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.test.mock.NetconfAccessorMock;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.FaultService;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.NotificationService;
+import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.UniversalId;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.AttributeValueChangedNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.ObjectCreationNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.ObjectDeletionNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.ProblemNotification;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPE;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPECRITICAL;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEMAJOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEMINOR;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPENONALARMED;
+import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEWARNING;
+import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
+
+public class TestOnf14WireInterfaceNotificationListener extends Mockito {
+    private NetconfAccessor accessor;
+    private NodeId nodeId;
+    private DeviceManagerServiceProvider serviceProvider;
+    private FaultService faultService;
+    private DataProvider databaseService;
+    private NotificationService notificationService;
+
+    private ObjectDeletionNotification deletionNotif;
+    private ObjectCreationNotification creationNotif;
+    private ProblemNotification problemNotif;
+    private AttributeValueChangedNotification attrValChangedNotif;
+
+    @Before
+    public void init() {
+        accessor = mock(NetconfAccessorMock.class);
+        nodeId = mock(NodeId.class);
+        serviceProvider = mock(DeviceManagerServiceProvider.class);
+        faultService = mock(FaultService.class);
+        databaseService = mock(DataProvider.class);
+        notificationService = mock(NotificationService.class);
+
+        problemNotif = mock(ProblemNotification.class);
+        deletionNotif = mock(ObjectDeletionNotification.class);
+        creationNotif = mock(ObjectCreationNotification.class);
+        attrValChangedNotif = mock(AttributeValueChangedNotification.class);
+
+        when(accessor.getNodeId()).thenReturn(nodeId);
+        when(problemNotif.getCounter()).thenReturn(10);
+        when(problemNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+        when(problemNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-0abc-abcd-0123456789AB"));
+        when(problemNotif.getProblem()).thenReturn("modulationIsDownShifted");
+
+        when(attrValChangedNotif.getAttributeName()).thenReturn("12345678-0123-2345-abcd-0123456789AB");
+        when(attrValChangedNotif.getCounter()).thenReturn(20);
+        when(attrValChangedNotif.getNewValue()).thenReturn("new-value");
+        when(attrValChangedNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(attrValChangedNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
+        when(creationNotif.getObjectType()).thenReturn("air-interface-name");
+        when(creationNotif.getCounter()).thenReturn(20);
+        when(creationNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(creationNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
+        when(deletionNotif.getCounter()).thenReturn(20);
+        when(deletionNotif.getObjectIdRef()).thenReturn(new UniversalId("12345678-0123-1234-abcd-0123456789AB"));
+        when(deletionNotif.getTimestamp()).thenReturn(new DateAndTime("2020-02-05T12:30:45.283Z"));
+
+        when(serviceProvider.getFaultService()).thenReturn(faultService);
+        when(serviceProvider.getDataProvider()).thenReturn(databaseService);
+        when(serviceProvider.getNotificationService()).thenReturn(notificationService);
+    }
+
+    @Test
+    public void testOtherNotif() {
+        Onf14WireInterfaceNotificationListener notifListener =
+                new Onf14WireInterfaceNotificationListener(accessor, serviceProvider);
+
+        notifListener.onObjectDeletionNotification(deletionNotif);
+        notifListener.onObjectCreationNotification(creationNotif);
+        notifListener.onAttributeValueChangedNotification(attrValChangedNotif);
+    }
+
+    @Test
+    public void testProblemNotifCritical() {
+        Onf14WireInterfaceNotificationListener notifListener =
+                new Onf14WireInterfaceNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPECRITICAL.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifMajor() {
+        Onf14WireInterfaceNotificationListener notifListener =
+                new Onf14WireInterfaceNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPEMAJOR.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifMinor() {
+        Onf14WireInterfaceNotificationListener notifListener =
+                new Onf14WireInterfaceNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPEMINOR.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifWarning() {
+        Onf14WireInterfaceNotificationListener notifListener =
+                new Onf14WireInterfaceNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPEWARNING.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifNonalarmed() {
+        Onf14WireInterfaceNotificationListener notifListener =
+                new Onf14WireInterfaceNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenAnswer(new Answer<Class<? extends SEVERITYTYPE>>() {
+            @Override
+            public Class<? extends SEVERITYTYPE> answer(InvocationOnMock invocation) throws Throwable {
+                return SEVERITYTYPENONALARMED.class;
+            }
+        });
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+    @Test
+    public void testProblemNotifNull() {
+        Onf14WireInterfaceNotificationListener notifListener =
+                new Onf14WireInterfaceNotificationListener(accessor, serviceProvider);
+
+        when(problemNotif.getSeverity()).thenReturn(null);
+
+        notifListener.onProblemNotification(problemNotif);
+    }
+
+}