org.eclipse.jetty.websocket
Class WebSocketHandler
java.lang.Object
org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.AggregateLifeCycle
org.eclipse.jetty.server.handler.AbstractHandler
org.eclipse.jetty.server.handler.AbstractHandlerContainer
org.eclipse.jetty.server.handler.HandlerWrapper
org.eclipse.jetty.websocket.WebSocketHandler
- All Implemented Interfaces:
- Handler, HandlerContainer, Destroyable, Dumpable, LifeCycle, WebSocketFactory.Acceptor
public abstract class WebSocketHandler
- extends HandlerWrapper
- implements WebSocketFactory.Acceptor
| Methods inherited from class org.eclipse.jetty.util.component.AggregateLifeCycle |
addBean, dump, dump, dump, dump, dumpStdErr, getBean, getBeans, getBeans, removeBean, removeBeans |
| Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle |
addLifeCycleListener, getState, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop, toString |
WebSocketHandler
public WebSocketHandler()
getWebSocketFactory
public WebSocketFactory getWebSocketFactory()
handle
public void handle(String target,
Request baseRequest,
HttpServletRequest request,
HttpServletResponse response)
throws IOException,
ServletException
- Description copied from interface:
Handler
- Handle a request.
- Specified by:
handle in interface Handler- Overrides:
handle in class HandlerWrapper
- Parameters:
target - The target of the request - either a URI or a name.baseRequest - The original unwrapped request object.request - The request either as the Request
object or a wrapper of that request. The HttpConnection.getCurrentConnection()
method can be used access the Request object if required.response - The response as the Response
object or a wrapper of that request. The HttpConnection.getCurrentConnection()
method can be used access the Response object if required.
- Throws:
IOException
ServletException
checkOrigin
public boolean checkOrigin(HttpServletRequest request,
String origin)
- Description copied from interface:
WebSocketFactory.Acceptor
- Check the origin of an incoming WebSocket handshake request
- Specified by:
checkOrigin in interface WebSocketFactory.Acceptor
- Returns:
- boolean to indicate that the origin is acceptable.
Copyright © 1995-2011 Mort Bay Consulting. All Rights Reserved.