X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fserver%2Fsfaapi.py;h=2510ec4e866016152bf751dda5201931ae563cfa;hb=862dfa7f7b8cce8c17e80c42aedd8d500ea86cb6;hp=3f6bea785f6c92835b903051bf4a6d0788cc4d39;hpb=24a218d302066d775e24f57423ee6ddb974c6178;p=sfa.git diff --git a/sfa/server/sfaapi.py b/sfa/server/sfaapi.py index 3f6bea78..2510ec4e 100644 --- a/sfa/server/sfaapi.py +++ b/sfa/server/sfaapi.py @@ -5,8 +5,8 @@ from sfa.util.faults import SfaFault, SfaAPIError, RecordNotFound from sfa.util.genicode import GENICODE from sfa.util.config import Config from sfa.util.cache import Cache -from sfa.trust.auth import Auth +from sfa.trust.auth import Auth from sfa.trust.certificate import Keypair, Certificate from sfa.trust.credential import Credential from sfa.trust.rights import determine_rights @@ -109,9 +109,9 @@ class SfaApi (XmlrpcApi): # get a new credential if self.interface in ['registry']: - cred = self.__getCredentialRaw() + cred = self._getCredentialRaw() else: - cred = self.__getCredential() + cred = self._getCredential() cred.save_to_file(cred_filename, save_parents=True) return cred.save_to_string(save_parents=True) @@ -134,7 +134,7 @@ class SfaApi (XmlrpcApi): break return delegated_cred - def __getCredential(self): + def _getCredential(self): """ Get our credential from a remote registry """ @@ -148,7 +148,7 @@ class SfaApi (XmlrpcApi): cred = registry.GetCredential(self_cred, self.hrn, 'authority') return Credential(string=cred) - def __getCredentialRaw(self): + def _getCredentialRaw(self): """ Get our current credential directly from the local registry. """ @@ -161,7 +161,7 @@ class SfaApi (XmlrpcApi): auth_hrn = hrn auth_info = self.auth.get_auth_info(auth_hrn) from sfa.storage.alchemy import dbsession - from sfa.storage.persistentobjs import RegRecord + from sfa.storage.model import RegRecord record = dbsession.query(RegRecord).filter_by(type='authority+sa', hrn=hrn).first() if not record: raise RecordNotFound(hrn)