X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FList.py;h=c023fa012e5c23f014b8722f3ec0ed5e2bfb8a37;hb=862dfa7f7b8cce8c17e80c42aedd8d500ea86cb6;hp=8b4fcbea2602fddbf40e74fdf1dcc2f7efbffdb0;hpb=06b330f0ee047bdb107e43e82b1d7356c876bc15;p=sfa.git diff --git a/sfa/methods/List.py b/sfa/methods/List.py index 8b4fcbea..c023fa01 100644 --- a/sfa/methods/List.py +++ b/sfa/methods/List.py @@ -1,11 +1,11 @@ -from sfa.util.faults 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 + class List(Method): """ List the records in an authority. @@ -22,7 +22,8 @@ class List(Method): Parameter(type([str]), "List of credentials")), ] - returns = [SfaRecord] + # xxx used to be [SfaRecord] + returns = [Parameter(dict, "registry record")] def call(self, xrn, creds): hrn, type = urn_to_hrn(xrn) @@ -32,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)