X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FList.py;h=bbd3e478ea4e6f24664c6abd48d3664ae0821433;hb=cf630d87d633f3861e3ac8a50433fa29ca46a74e;hp=0730f2bb64e9a7a7adaf4b5d63634f7c53ad68e9;hpb=04bad0af6d20b9f3ecfcfa1c96afd6a1da969151;p=sfa.git diff --git a/sfa/methods/List.py b/sfa/methods/List.py index 0730f2bb..bbd3e478 100644 --- a/sfa/methods/List.py +++ b/sfa/methods/List.py @@ -1,13 +1,12 @@ -### $Id: list.py 16588 2010-01-13 17:53:44Z anil $ -### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/list.py $ -from sfa.util.faults import * -from sfa.util.namespace import * +from sfa.util.xrn import urn_to_hrn from sfa.util.method import Method -from sfa.util.parameter import Parameter, Mixed -from sfa.util.record import SfaRecord + from sfa.trust.credential import Credential +from sfa.storage.parameter import Parameter, Mixed +from sfa.storage.record import SfaRecord + class List(Method): """ List the records in an authority. @@ -34,5 +33,4 @@ class List(Method): origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn() self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrn, self.name)) - manager = self.api.get_interface_manager() - return manager.list(self.api, xrn) + return self.api.manager.List(self.api, xrn)