Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/remote/messages/ConfigurationAndResponse.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/remote/messages/ConfigurationAndResponse.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/remote/messages/ConfigurationAndResponse.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/remote/messages/ConfigurationAndResponse.java
deleted file mode 100644
index 44aa10aabe6..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/remote/messages/ConfigurationAndResponse.java
+++ /dev/null
@@ -1,45 +0,0 @@
-package org.eclipse.osee.ote.remote.messages;
-
-import java.io.Serializable;
-
-import org.eclipse.osee.ote.Configuration;
-
-public class ConfigurationAndResponse implements Serializable {
-
- private static final long serialVersionUID = 8496858852630392143L;
-
- private final String address;
- private final int port;
- private final boolean install;
- private final Configuration configuration;
- private final String id;
-
- public ConfigurationAndResponse(String address, int port, Configuration configuration, boolean install, String id){
- this.address = address;
- this.port = port;
- this.configuration = configuration;
- this.install = install;
- this.id = id;
- }
-
- public String getAddress(){
- return address;
- }
-
- public int getPort(){
- return port;
- }
-
- public Configuration getConfiguration(){
- return configuration;
- }
-
- public boolean install(){
- return install;
- }
-
- public String getId(){
- return id;
- }
-
-}

Back to the top