Replaced get_credential with GetCredential and get_self_credential with GetSelfCredential
[sfa.git] / sfa / methods / get_credential.py
index c624b1b..51f4410 100644 (file)
@@ -7,11 +7,12 @@ from sfa.util.faults import *
 from sfa.util.namespace import *
 from sfa.util.method import Method
 from sfa.util.parameter import Parameter, Mixed
-from sfa.util.debug import log
-from sfa.trust.credential import Credential
+from sfa.methods.GetCredential import GetCredential
 
-class get_credential(Method):
+class get_credential(GetCredential):
     """
+    Deprecated. Use GetCredential instead.
+
     Retrive a credential for an object
     If cred == Nonee then the behavior reverts to get_self_credential
 
@@ -33,21 +34,4 @@ class get_credential(Method):
     returns = Parameter(str, "String representation of a credential object")
 
     def call(self, cred, type, xrn, origin_hrn=None):
-        if type:
-            hrn = urn_to_hrn(xrn)[0]
-        else:
-            hrn, type = urn_to_hrn(xrn)
-
-        #log the call
-        if not origin_hrn:
-            origin_hrn = Credential(string=cred).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))        
-        self.api.auth.check(cred, 'getcredential')
-        self.api.auth.verify_object_belongs_to_me(hrn)
-
-        # send the call to the right manager
-        manager_base = 'sfa.managers'
-        mgr_type = self.api.config.SFA_REGISTRY_TYPE
-        manager_module = manager_base + ".registry_manager_%s" % mgr_type
-        manager = __import__(manager_module, fromlist=[manager_base])
-        return manager.get_credential(self.api, xrn, type)
+        return GetCredential.call(self, cred, xrn, type)