All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jetty.websocket.WebSocketFactory Maven / Gradle / Ivy

There is a newer version: 0.9.0.RC3
Show newest version
/*
 * Copyright 2011 Jeanfrancois Arcand
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
// ========================================================================
// Copyright (c) 2010 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
package org.eclipse.jetty.websocket;

import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * Fake class. Jetty will ignore it.
 */
public class WebSocketFactory {
    private static final Logger LOG = Log.getLogger(WebSocketFactory.class);

    public interface Acceptor {
        /* ------------------------------------------------------------ */

        /**
         * 

Factory method that applications needs to implement to return a * {@link WebSocket} object.

* * @param request the incoming HTTP upgrade request * @param protocol the websocket sub protocol * @return a new {@link WebSocket} object that will handle websocket events. */ WebSocket doWebSocketConnect(HttpServletRequest request, String protocol); /* ------------------------------------------------------------ */ /** *

Checks the origin of an incoming WebSocket handshake request.

* * @param request the incoming HTTP upgrade request * @param origin the origin URI * @return boolean to indicate that the origin is acceptable. */ boolean checkOrigin(HttpServletRequest request, String origin); } private final Map> _extensionClasses = new HashMap>(); { } public WebSocketFactory(Acceptor acceptor) { } public WebSocketFactory(Acceptor acceptor, int bufferSize) { } /** * @return A modifiable map of extension name to extension class */ public Map> getExtensionClassesMap() { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * Get the maxIdleTime. * * @return the maxIdleTime */ public long getMaxIdleTime() { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * Set the maxIdleTime. * * @param maxIdleTime the maxIdleTime to set */ public void setMaxIdleTime(int maxIdleTime) { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * Get the bufferSize. * * @return the bufferSize */ public int getBufferSize() { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * Set the bufferSize. * * @param bufferSize the bufferSize to set */ public void setBufferSize(int bufferSize) { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * @return The initial maximum text message size (in characters) for a connection */ public int getMaxTextMessageSize() { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * Set the initial maximum text message size for a connection. This can be changed by * the application calling {@link WebSocket.Connection#setMaxTextMessageSize(int)}. * * @param maxTextMessageSize The default maximum text message size (in characters) for a connection */ public void setMaxTextMessageSize(int maxTextMessageSize) { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * @return The initial maximum binary message size (in bytes) for a connection */ public int getMaxBinaryMessageSize() { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * Set the initial maximum binary message size for a connection. This can be changed by * the application calling {@link WebSocket.Connection#setMaxBinaryMessageSize(int)}. * * @param maxBinaryMessageSize The default maximum binary message size (in bytes) for a connection */ public void setMaxBinaryMessageSize(int maxBinaryMessageSize) { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } /** * Upgrade the request/response to a WebSocket Connection. *

This method will not normally return, but will instead throw a * UpgradeConnectionException, to exit HTTP handling and initiate * WebSocket handling of the connection. * * @param request The request to upgrade * @param response The response to upgrade * @param websocket The websocket handler implementation to use * @param protocol The websocket protocol * @throws IOException in case of I/O errors */ public void upgrade(HttpServletRequest request, HttpServletResponse response, WebSocket websocket, String protocol) throws IOException { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } protected String[] parseProtocols(String protocol) { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } public boolean acceptWebSocket(HttpServletRequest request, HttpServletResponse response) throws IOException { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } public List initExtensions(List requested, int maxDataOpcodes, int maxControlOpcodes, int maxReservedBits) { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } private Extension newExtension(String name) { throw new UnsupportedOperationException("Please remove the atmosphere-compat-jetty from your classpath"); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy