X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FCreateGid.py;h=0a2785f57e35520d961b73379cefea5485a7f9f2;hb=8ad9842ef98f6c8ba5ac7770257b9d2ce9345726;hp=7c1bf8ace4244986d4551081f802bfe52bf2b6a2;hpb=f3452433e15c17e92f54aded248ba667602f5ead;p=sfa.git diff --git a/sfa/methods/CreateGid.py b/sfa/methods/CreateGid.py index 7c1bf8ac..0a2785f5 100644 --- a/sfa/methods/CreateGid.py +++ b/sfa/methods/CreateGid.py @@ -1,20 +1,19 @@ -### $Id: register.py 16477 2010-01-05 16:31:37Z thierry $ -### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/register.py $ from sfa.util.xrn import urn_to_hrn from sfa.util.method import Method -from sfa.util.parameter import Parameter, Mixed + +from sfa.storage.parameter import Parameter, Mixed from sfa.trust.credential import Credential class CreateGid(Method): """ - Create a signed credential for the s object with the registry. In addition to being stored in the + Create a signed credential for the object with the registry. In addition to being stored in the SFA database, the appropriate records will also be created in the PLC databases + @param cred credential string @param xrn urn or hrn of certificate owner @param cert caller's certificate - @param cred credential string @return gid string representation """ @@ -40,11 +39,6 @@ class CreateGid(Method): #log the call origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn() - - # log - 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, xrn, self.name)) - manager = self.api.get_interface_manager() - - return manager.create_gid(self.api, xrn, cert) + return self.api.manager.CreateGid(self.api, xrn, cert)