-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some fixes for running cometd6 on jetty-10 (#3702)
* Some fixes from testing cometd-6 Signed-off-by: Greg Wilkins <gregw@webtide.com>
- Loading branch information
Showing
2 changed files
with
44 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...ocket-server/src/main/java/org/eclipse/jetty/websocket/server/WebSocketUpgradeFilter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995-2019 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.server; | ||
|
||
import javax.servlet.FilterConfig; | ||
import javax.servlet.ServletException; | ||
|
||
/** | ||
* @deprecated Moved to #org.eclipse.jetty.websocket.servlet.WebSocketUpgradeFilter | ||
*/ | ||
@Deprecated | ||
public class WebSocketUpgradeFilter extends org.eclipse.jetty.websocket.servlet.WebSocketUpgradeFilter | ||
{ | ||
@Override | ||
public void init(FilterConfig config) throws ServletException | ||
{ | ||
super.init(config); | ||
config.getServletContext().log( | ||
WebSocketUpgradeFilter.class.getName() + | ||
" is deprecated. Use " + | ||
org.eclipse.jetty.websocket.servlet.WebSocketUpgradeFilter.class.getName()); | ||
} | ||
} |