Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-10 08:38:58

0001 from pandajedi.jedicore.Interaction import CommandReceiveInterface
0002 
0003 
0004 # base class to interact with DDM
0005 class DDMClientBase(CommandReceiveInterface):
0006     # constructor
0007     def __init__(self, con):
0008         CommandReceiveInterface.__init__(self, con)
0009 
0010     # list dataset/container
0011     def listDatasets(self, datasetName, ignorePandaDS=True):
0012         return self.SC_SUCCEEDED, [datasetName]
0013 
0014     # check endpoint
0015     def check_endpoint(self, rse):
0016         return self.SC_SUCCEEDED, (True, None)