X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FResolve.py;h=f3a6e67135497c3704dc439e03402058ce312953;hb=1cc8e9613cab8b5b22478de369f259e591c54e6d;hp=9a6dd47c0fe7c52750fc2abaf65f35be34a38e81;hpb=90ab94deecf2371c199d56cd35f0fd4fd20233e4;p=sfa.git diff --git a/sfa/methods/Resolve.py b/sfa/methods/Resolve.py index 9a6dd47c..f3a6e671 100644 --- a/sfa/methods/Resolve.py +++ b/sfa/methods/Resolve.py @@ -6,7 +6,6 @@ from sfa.util.method import Method from sfa.trust.credential import Credential from sfa.storage.parameter import Parameter, Mixed -from sfa.storage.record import SfaRecord class Resolve(Method): """ @@ -19,16 +18,23 @@ class Resolve(Method): interfaces = ['registry'] + # should we not accept an optional 'details' argument ? accepts = [ Mixed(Parameter(str, "Human readable name (hrn or urn)"), Parameter(list, "List of Human readable names ([hrn])")), Mixed(Parameter(str, "Credential string"), - Parameter(list, "List of credentials)")) + Parameter(list, "List of credentials)")), + Parameter(dict, "options"), ] - returns = [SfaRecord] + # xxx used to be [SfaRecord] + returns = [Parameter(dict, "registry record")] - def call(self, xrns, creds): + def call(self, xrns, creds, options={}): + # use details=False by default, only when explicitly specified do we want + # to mess with the testbed details + if 'details' in options: details=options['details'] + else: details=False type = None if not isinstance(xrns, types.ListType): type = Xrn(xrns).get_type() @@ -42,5 +48,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 - return self.api.manager.Resolve(self.api, xrns, type) + return self.api.manager.Resolve(self.api, xrns, type, details=details)