]> gerrit.simantics Code Review - simantics/platform.git/blob - IConsoleSupport.java
facc7b403b68df80a2ac122656482cc323c43f35
[simantics/platform.git] / IConsoleSupport.java
1 package org.simantics.document.server.io;
2
3 import java.util.Collection;
4
5 public interface IConsoleSupport {
6         void registerConsole(String sessionGUID, IConsole console);
7         IConsole getConsole(String sessionGUID);
8         IConsole findConsole(String consoleGUID);
9         Collection<IConsole> getConsoles();
10 }