package com.tridium.websockets; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import javax.baja.sys.Context; public interface WebSocketContext extends Context { InputStream getInputStream() throws IOException; OutputStream getOutputStream() throws IOException; String getRemoteHost(); String getRequestURI(); String getScheme(); }