X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FList.py;h=bbd3e478ea4e6f24664c6abd48d3664ae0821433;hb=6d642a325266e2e1508c0c7b0317dd510ba71b81;hp=ccd66b48ca7a4c379ee860b3577f1bed4148b323;hpb=431a6bf78c6232a44b178e2092451e733a71bba3;p=sfa.git diff --git a/sfa/methods/List.py b/sfa/methods/List.py index ccd66b48..bbd3e478 100644 --- a/sfa/methods/List.py +++ b/sfa/methods/List.py @@ -1,10 +1,12 @@ 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. @@ -31,4 +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)) - return self.api.manager.list(self.api, xrn) + return self.api.manager.List(self.api, xrn)