Add support for configuring OLT access device data with uplink/vlan information.
This is required when running on target OLT switches where we have to configure
the uplink/vlan information with the device ids for ONOS to program IGMP flows correctly.
Add methods for getting devices and flows from ONOS rest interface.
Change relevant OnosCtrl methods to class methods that are applicable for global onos configurations.
diff --git a/src/test/tls/tlsAuthTest.py b/src/test/tls/tlsAuthTest.py
index 5a30c49..309b1e4 100644
--- a/src/test/tls/tlsAuthTest.py
+++ b/src/test/tls/tlsAuthTest.py
@@ -23,7 +23,7 @@
             self.onos_load_config(aaa_dict)
 
       def onos_load_config(self, config):
-            status, code = self.onos_ctrl.config(config)
+            status, code = OnosCtrl.config(config)
             if status is False:
                   log.info('Configure request for AAA returned status %d' %code)
                   assert_equal(status, True)