fixes
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Tue, 22 May 2012 14:37:18 +0000 (16:37 +0200)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Tue, 22 May 2012 14:37:18 +0000 (16:37 +0200)
sfa/generic/void.py

index 7dd2665..6c496f4 100644 (file)
@@ -5,9 +5,12 @@ from sfa.generic import Generic
 class void (Generic):
     
     # the importer class
+    # when set to None, the importer only performs the basic stuff
+    # xxx this convention probably is confusing, since None suggests that 
+    # *nothing* should be done..
+    # xxx need to refactor the importers anyway
     def importer_class (self): 
-        import sfa.importer.plimporter
-        return sfa.importer.Importer
+        return None
         
     # use the standard api class
     def api_class (self):
@@ -29,6 +32,6 @@ class void (Generic):
 
     # driver class for server-side services, talk to the whole testbed
     def driver_class (self):
-        import sfa.managers
-        return sfa.managers.driver
+        import sfa.managers.driver
+        return sfa.managers.driver.Driver