LCGDM-847: getReplica => getReplicaByRFN
authorAlejandro Álvarez Ayllón <alejandro.alvarez.ayllon@cern.ch>
Thu, 15 Nov 2012 16:43:39 +0000 (16:43 +0000)
committerAlejandro Álvarez Ayllón <alejandro.alvarez.ayllon@cern.ch>
Thu, 15 Nov 2012 16:43:39 +0000 (16:43 +0000)
git-svn-id: https://svn.cern.ch/reps/lcgdm/dmlite-plugins-vfs/trunk@7798 4525493e-7705-40b1-a816-d608a930855b

src/VfsNs.cpp
src/VfsNs.h

index ba2c1ad..e7f1ec0 100644 (file)
@@ -336,7 +336,7 @@ void VfsCatalog::removeDir(const std::string& path) throw (DmException)
 
 
 
-Replica VfsCatalog::getReplica(const std::string& rfn) throw (DmException)
+Replica VfsCatalog::getReplicaByRFN(const std::string& rfn) throw (DmException)
 {
   Replica replica;
   struct stat fstat;
index 18241ec..e506f9f 100644 (file)
@@ -86,7 +86,7 @@ namespace dmlite {
     void rename     (const std::string&, const std::string&) throw (DmException);
     void removeDir  (const std::string&)                     throw (DmException);
 
-    Replica getReplica   (const std::string& rfn)        throw (DmException);
+    Replica getReplicaByRFN(const std::string& rfn)        throw (DmException);
     void    updateReplica(const Replica& replica) throw (DmException);
 
    protected: