Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M Finkbeiner2013-02-28 18:31:06 +0000
committerRoberto E. Escobar2013-03-04 23:28:09 +0000
commit2565d92dddc1198a8874ac258661ff5e4d7c117c (patch)
treeaaa61bc55bbcfcf3e67282cfc0d4eda4493b1cd6 /plugins/org.eclipse.osee.ote.core
parent54e4cc85ff64b646e0a683a815319df1a0dbaf90 (diff)
downloadorg.eclipse.osee-2565d92dddc1198a8874ac258661ff5e4d7c117c.tar.gz
org.eclipse.osee-2565d92dddc1198a8874ac258661ff5e4d7c117c.tar.xz
org.eclipse.osee-2565d92dddc1198a8874ac258661ff5e4d7c117c.zip
feature[ats_5Z6FP]: Add NodeInfo to host env
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/IHostTestEnvironment.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/IHostTestEnvironment.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/IHostTestEnvironment.java
index 35f0ebf8c36..eb7a67111bd 100644
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/IHostTestEnvironment.java
+++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/IHostTestEnvironment.java
@@ -15,6 +15,7 @@ import java.rmi.RemoteException;
import java.util.Collection;
import org.eclipse.osee.framework.jdk.core.util.EnhancedProperties;
+import org.eclipse.osee.framework.messaging.NodeInfo;
import org.eclipse.osee.ote.core.ConnectionRequestResult;
import org.eclipse.osee.ote.core.IRemoteUserSession;
import org.eclipse.osee.ote.core.environment.BundleConfigurationReport;
@@ -36,4 +37,5 @@ public interface IHostTestEnvironment extends Remote {
void sendRuntimeBundle(Collection<BundleDescription> bundles) throws RemoteException;
void updateRuntimeBundle(Collection<BundleDescription> bundles) throws RemoteException;
void cleanupRuntimeBundles() throws RemoteException;
+ public NodeInfo getBroker() throws RemoteException;
}

Back to the top