Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/ConfigurationItem.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/ConfigurationItem.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/ConfigurationItem.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/ConfigurationItem.java
new file mode 100644
index 00000000000..2c435870317
--- /dev/null
+++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/ConfigurationItem.java
@@ -0,0 +1,44 @@
+package org.eclipse.osee.ote;
+
+/**
+ * This defines the bundle to be loaded by the OTE Server.
+ *
+ * @author Andrew M. Finkbeiner
+ *
+ */
+public class ConfigurationItem {
+
+ private String url;
+ private String version;
+ private String symbolicName;
+ private String md5;
+ private boolean isOsgiBundle;
+
+ public ConfigurationItem(String url, String version, String symbolicName, String md5, boolean isOsgiBundle) {
+ this.url = url;
+ this.version = version;
+ this.symbolicName = symbolicName;
+ this.md5 = md5;
+ }
+
+ public boolean isOsgiBundle() {
+ return isOsgiBundle;
+ }
+
+ public String getSymbolicName() {
+ return symbolicName;
+ }
+
+ public String getMd5Digest() {
+ return md5;
+ }
+
+ public String getVersion() {
+ return version;
+ }
+
+ public String getLocationUrl() {
+ return url;
+ }
+
+}

Back to the top