Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-20 07:58:58

0001 from pandaharvester.harvestercore.plugin_base import PluginBase
0002 
0003 
0004 # base credential manager
0005 class BaseCredManager(PluginBase):
0006     # constructor
0007     def __init__(self, **kwarg):
0008         PluginBase.__init__(self, **kwarg)
0009 
0010     # check credential lifetime for monitoring/alerting purposes
0011     def check_credential_lifetime(self):
0012         return
0013 
0014     # check proxy
0015     def check_credential(self):
0016         return True
0017 
0018     # renew proxy
0019     def renew_credential(self):
0020         return True, ""