Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2012-02-22 05:40:14 +0000
committerRyan D. Brooks2012-02-22 05:40:14 +0000
commit2e952df7696dd959044c6e015b9eb8d53c6d0f08 (patch)
treeb1edd856191916968d8e0fdde7cdc5b81a437baa /plugins/org.eclipse.osee.framework.core.datastore
parenta934b51cb7dfa1596239cfeb8c0fbf5ed442d2a2 (diff)
downloadorg.eclipse.osee-2e952df7696dd959044c6e015b9eb8d53c6d0f08.tar.gz
org.eclipse.osee-2e952df7696dd959044c6e015b9eb8d53c6d0f08.tar.xz
org.eclipse.osee-2e952df7696dd959044c6e015b9eb8d53c6d0f08.zip
feature[ats_VVMH0]: Integrate org.eclipse.osee.framework.core.server with X Server
Make services DS based Add org.eclipse.osee.framework.core.server into X Server Maven build
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.datastore')
-rw-r--r--plugins/org.eclipse.osee.framework.core.datastore/META-INF/MANIFEST.MF1
-rw-r--r--plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/DatastoreInitOperation.java4
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.datastore/META-INF/MANIFEST.MF b/plugins/org.eclipse.osee.framework.core.datastore/META-INF/MANIFEST.MF
index 4051b5a078e..493fdcd269b 100644
--- a/plugins/org.eclipse.osee.framework.core.datastore/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.osee.framework.core.datastore/META-INF/MANIFEST.MF
@@ -33,6 +33,7 @@ Import-Package: org.apache.commons.lang,
org.eclipse.osee.framework.jdk.core.util.xml,
org.eclipse.osee.framework.logging,
org.eclipse.osee.framework.resource.management,
+ org.eclipse.osee.logger,
org.osgi.framework,
org.osgi.util.tracker
Bundle-ActivationPolicy: lazy
diff --git a/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/DatastoreInitOperation.java b/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/DatastoreInitOperation.java
index 5b8a8141970..72c52992af4 100644
--- a/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/DatastoreInitOperation.java
+++ b/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/DatastoreInitOperation.java
@@ -72,7 +72,7 @@ public class DatastoreInitOperation extends AbstractOperation {
appServerManager.executeLookupRegistration();
deleteBinaryBackingData();
- String binaryDataPath = OseeServerProperties.getOseeApplicationServerData();
+ String binaryDataPath = OseeServerProperties.getOseeApplicationServerData(null);
Lib.deleteDir(new File(binaryDataPath + File.separator + "attr"));
OseeInfo.putValue(OseeInfo.DB_ID_KEY, GUID.create());
@@ -92,7 +92,7 @@ public class DatastoreInitOperation extends AbstractOperation {
}
private static void deleteBinaryBackingData() {
- String binaryDataPath = OseeServerProperties.getOseeApplicationServerData();
+ String binaryDataPath = OseeServerProperties.getOseeApplicationServerData(null);
OseeLog.logf(Activator.class, Level.INFO, "Deleting application server binary data [%s]...", binaryDataPath);
Lib.deleteDir(new File(binaryDataPath + File.separator + "attr"));
}

Back to the top