19 lines
396 B
Java
19 lines
396 B
Java
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();
|
|
}
|