Skip to Content.
Sympa Menu

perfsonar-dev - perfsonar: r5365 - branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist

Subject: perfsonar development work

List archive

perfsonar: r5365 - branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist


Chronological Thread 
  • From:
  • To:
  • Subject: perfsonar: r5365 - branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist
  • Date: Tue, 1 Dec 2009 04:56:03 -0500

Author: trzaszcz
Date: 2009-12-01 04:56:02 -0500 (Tue, 01 Dec 2009)
New Revision: 5365

Added:

branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist/ExistDbManager.java
Removed:

branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist/ExistXmlDb.java
Modified:

branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist/XQueryDAOSupportImpl.java
Log:
Exist Db access improvement


Added:
branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist/ExistDbManager.java

Deleted:
branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist/ExistXmlDb.java

Modified:
branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist/XQueryDAOSupportImpl.java
===================================================================
---
branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist/XQueryDAOSupportImpl.java
2009-11-30 20:33:13 UTC (rev 5364)
+++
branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist/XQueryDAOSupportImpl.java
2009-12-01 09:56:02 UTC (rev 5365)
@@ -9,17 +9,17 @@
XQueryDAOSupport, LookupServiceDAO {

public void uploadStoreFile(String name,String content){
- ExistXmlDb.uploadStoreFile(name, content);
+ ExistDbManager.uploadStoreFile(name, content);
}

public XMLDBResult performXQuery(String xquery) throws
PerfSONARException {
- XMLDBResult result=ExistXmlDb.performXQuery(xquery);
+ XMLDBResult result=ExistDbManager.performXQuery(xquery);
return result;
}


public void removeFile(String fileName){
- ExistXmlDb.removeFile(fileName);
+ ExistDbManager.removeFile(fileName);
}

public boolean isDBCollection(String collection) throws
PerfSONARException {



  • perfsonar: r5365 - branches/new-structure-with-base2/ps-mdm-ls/src/main/java/org/perfsonar/service/lookupservice/storage/exist, svnlog, 12/01/2009

Archive powered by MHonArc 2.6.16.

Top of Page