~ ============LICENSE_END=======================================================
   ~
   -->
-
+  
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
 
                 sb.append(", ");
             }
             sb.append(edit);
-
             EventlogBuilder eventlogBuilder = new EventlogBuilder();
-
             InstanceIdentifier<?> target = edit.getTarget();
             if (target != null) {
                 eventlogBuilder.setObjectId(target.getPathArguments().toString());
                 eventlogBuilder.setAttributeName(target.getTargetType().getName());
             }
             eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue());
-
             eventlogBuilder.setNewValue(String.valueOf(edit.getOperation()));
             eventlogBuilder.setTimestamp(notification.getChangeTime());
             eventlogBuilder.setCounter(counter);
             eventlogBuilder.setSourceType(SourceType.Netconf);
             databaseProvider.writeEventLog(eventlogBuilder.build());
-
             log.info("onDeviceConfigChange (2) {}", sb);
             counter++;
         }
     public void onCreateTechInfoNotification(CreateTechInfoNotification notification) {
         // TODO Auto-generated method stub
         log.info("onCreateTechInfoNotification(1){}", notification);
-
         EventlogBuilder eventlogBuilder = new EventlogBuilder();
         eventlogBuilder.setId(notification.getShelfId()).setAttributeName(notification.getShelfId())
                 .setObjectId(notification.getShelfId()).setNodeId(this.netconfAccessor.getNodeId().getValue())
         databaseProvider.writeEventLog(eventlogBuilder.build());
         log.info("Create-techInfo Notification written ");
         counter++;
-
     }
     // end of public methods
 
 
         readInterfaceData(device);
         // Writing initial alarms at the time of device registration
         initialAlarmReader.faultService();
-        // faultEventListener.initCurrentProblemStatus(this.netconfAccessor.getNodeId(),
-        // oScaFaultListener.writeFaultData(this.sequenceNumber));
-        // oScaFaultListener.writeAlarmLog(oScaFaultListener.writeFaultData(this.sequenceNumber));
-        // this.sequenceNumber = this.sequenceNumber + 1;
-
         pmDataEntity = this.openRoadmPmData.buildPmDataEntity(this.openRoadmPmData.getPmData(this.netconfAccessor));
         if (!pmDataEntity.isEmpty()) {
             this.databaseService.doWritePerformanceData(pmDataEntity);