ONOS dependency is changed from 1.13.1 to 1.13.6
SADIS interface is changed
AAA must use the updated version and interfaces

Change-Id: I14aeff6929eb1f7670fbe2071feaa5aeb9374da9
diff --git a/src/main/java/org/opencord/aaa/CustomizationInfo.java b/src/main/java/org/opencord/aaa/CustomizationInfo.java
index d0709f2..22f575f 100755
--- a/src/main/java/org/opencord/aaa/CustomizationInfo.java
+++ b/src/main/java/org/opencord/aaa/CustomizationInfo.java
@@ -17,9 +17,8 @@
 package org.opencord.aaa;
 
 import org.onosproject.net.device.DeviceService;
-import org.opencord.sadis.SubscriberAndDeviceInformationService;
-
-//import java.util.Map;
+import org.opencord.sadis.BaseInformationService;
+import org.opencord.sadis.SubscriberAndDeviceInformation;
 
 /**
  * Info required to do customization to packets.
@@ -28,9 +27,10 @@
 
     private DeviceService devService;
 
-    private SubscriberAndDeviceInformationService subscriberService;
+    private BaseInformationService<SubscriberAndDeviceInformation> subscriberService;
 
-    public CustomizationInfo(SubscriberAndDeviceInformationService subsService, DeviceService devService) {
+    public CustomizationInfo(BaseInformationService<SubscriberAndDeviceInformation> subsService,
+                             DeviceService devService) {
         this.subscriberService = subsService;
         this.devService = devService;
     }
@@ -39,7 +39,7 @@
         return devService;
     }
 
-    public SubscriberAndDeviceInformationService subscriberService() {
+    public BaseInformationService<SubscriberAndDeviceInformation> subscriberService() {
         return subscriberService;
     }
 }