X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fgeneric%2Fvoid.py;h=6c496f4f7439ed46a60e23f7a89739a5dab5ec85;hb=9b91992f38e1f074845c75b29c107737fef5c6bc;hp=7dd2665603f082e94697201f92aa7b2bf30f0d75;hpb=79d6ecc71ea6b24c3639a93df1b4d9584a976d89;p=sfa.git diff --git a/sfa/generic/void.py b/sfa/generic/void.py index 7dd26656..6c496f4f 100644 --- a/sfa/generic/void.py +++ b/sfa/generic/void.py @@ -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