Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M Finkbeiner2012-05-27 17:36:45 +0000
committerRoberto E. Escobar2012-05-27 17:36:45 +0000
commit40810abde45538e9302ec5ada54e149d159c29a1 (patch)
tree289b830f63911243c0b3f26ce01320c295a0fdf2 /plugins/org.eclipse.osee.ote.server
parenta58114b67d164310d6c425590680ca01b48b7a6b (diff)
downloadorg.eclipse.osee-40810abde45538e9302ec5ada54e149d159c29a1.tar.gz
org.eclipse.osee-40810abde45538e9302ec5ada54e149d159c29a1.tar.xz
org.eclipse.osee-40810abde45538e9302ec5ada54e149d159c29a1.zip
feature[ats_19NDL]: Remove RMI from status board
Diffstat (limited to 'plugins/org.eclipse.osee.ote.server')
-rw-r--r--plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/RemoteTestEnvironment.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/RemoteTestEnvironment.java b/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/RemoteTestEnvironment.java
index 9973028ab85..6b0fa1b36d6 100644
--- a/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/RemoteTestEnvironment.java
+++ b/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/RemoteTestEnvironment.java
@@ -27,7 +27,6 @@ import org.eclipse.osee.ote.core.ReturnStatus;
import org.eclipse.osee.ote.core.cmd.Command;
import org.eclipse.osee.ote.core.environment.UserTestSessionKey;
import org.eclipse.osee.ote.core.environment.interfaces.IRemoteCommandConsole;
-import org.eclipse.osee.ote.core.environment.status.IServiceStatusListener;
import org.eclipse.osee.ote.core.framework.command.ICommandHandle;
import org.eclipse.osee.ote.core.framework.command.ITestServerCommand;
import org.eclipse.osee.ote.core.model.IModel;
@@ -153,13 +152,6 @@ public class RemoteTestEnvironment implements ITestEnvironmentMessageSystem {
}
}
- @Override
- public void addStatusListener(IServiceStatusListener listener) throws RemoteException {
- if (Activator.getDefault().getOteStatusBoard() != null) {
- Activator.getDefault().getOteStatusBoard().addStatusListener(listener);
- }
- }
-
private void closeAllConsoles() throws RemoteException {
lock.lock();
LinkedList<IRemoteCommandConsole> consoles;
@@ -195,13 +187,6 @@ public class RemoteTestEnvironment implements ITestEnvironmentMessageSystem {
return env.getUniqueId();
}
- @Override
- public void removeStatusListener(IServiceStatusListener listener) throws RemoteException {
- if (Activator.getDefault().getOteStatusBoard() != null) {
- Activator.getDefault().getOteStatusBoard().removeStatusListener(listener);
- }
- }
-
public IUserSession getUserSession(UserTestSessionKey key) {
return env.getUserSession(key);
}

Back to the top