Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/OTEServerFolder.java9
-rw-r--r--plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java7
2 files changed, 15 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/OTEServerFolder.java b/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/OTEServerFolder.java
index 735dae1c6be..de46898567f 100644
--- a/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/OTEServerFolder.java
+++ b/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/OTEServerFolder.java
@@ -31,7 +31,14 @@ public interface OTEServerFolder {
public File getBatchesFolder();
public File getCacheFolder();
-
+
+ /**
+ * This is the root folder for miscellaneous files that might want to be stored.
+ *
+ * @return
+ */
+ public File getMiscFiles();
+
/**
* This is the batch log file that contains all LEVEL.SEVERE and above log events that happened during
* a batch.
diff --git a/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java b/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java
index db170ed3d31..a58fdc94630 100644
--- a/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java
+++ b/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java
@@ -43,6 +43,8 @@ public class OTEFolderImpl implements OTEServerFolder{
private static File BATCHES = new File(OTESERVER, "batches");
private static File JARCACHE = new File(OTESERVER, "runtimeCache");
private static File SERVERS = new File(OTESERVER, "servers");
+ private static File MISCFILES = new File(OTESERVER, "miscFiles");
+
private static SimpleDateFormat format = new SimpleDateFormat("yyyy_MM_dd___kk_mm_ss");
private File currentServerFolder;
@@ -190,6 +192,11 @@ public class OTEFolderImpl implements OTEServerFolder{
public File getCacheFolder(){
return JARCACHE;
}
+
+ @Override
+ public File getMiscFiles() {
+ return MISCFILES;
+ }
@Override
public File getNewServerFolder() {

Back to the top