X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FResolve.py;h=7abc6cdacc077186d33e03579a1d1c380d58f073;hb=3cf5c9d8e3f11fa56450c22efdbd6e483c5adda9;hp=36fa40d4f65e9e5becd75c87b64134d6b9794532;hpb=00813f434bb41f66aec157f94576f55e0eee4dbe;p=sfa.git diff --git a/sfa/methods/Resolve.py b/sfa/methods/Resolve.py index 36fa40d4..7abc6cda 100644 --- a/sfa/methods/Resolve.py +++ b/sfa/methods/Resolve.py @@ -1,13 +1,11 @@ -### $Id: resolve.py 17157 2010-02-21 04:19:34Z tmack $ -### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/resolve.py $ -import traceback import types -from sfa.util.faults import * -from sfa.util.xrn import urn_to_hrn + +from sfa.util.xrn import Xrn, urn_to_hrn from sfa.util.method import Method -from sfa.util.parameter import Parameter, Mixed + from sfa.trust.credential import Credential -from sfa.util.record import SfaRecord + +from sfa.storage.parameter import Parameter, Mixed class Resolve(Method): """ @@ -27,15 +25,15 @@ class Resolve(Method): Parameter(list, "List of credentials)")) ] - returns = [SfaRecord] + # xxx used to be [SfaRecord] + returns = [Parameter(dict, "registry record")] def call(self, xrns, creds): + type = None if not isinstance(xrns, types.ListType): + type = Xrn(xrns).get_type() xrns=[xrns] hrns = [urn_to_hrn(xrn)[0] for xrn in xrns] - #test - #test2 - #test tmack #find valid credentials valid_creds = self.api.auth.checkCredentials(creds, 'resolve') @@ -44,8 +42,5 @@ class Resolve(Method): self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrns, self.name)) # send the call to the right manager - manager = self.api.get_interface_manager() - return manager.resolve(self.api, xrns) - - + return self.api.manager.Resolve(self.api, xrns, type)