Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.websocket
Interface WebSocketContext


Deprecated. As of release 12.1.3, replaced by JSR356: Java API for WebSocket

@Deprecated
public interface WebSocketContext

This class provides context information for a WebSocket that is declared by the @WebSocket annotation or set by the application.


Method Summary
 int getMaxConnections()
          Deprecated. Returns maximum connections.
 int getMaxMessageSize()
          Deprecated. Returns maximum message size.
 String[] getPathPatterns()
          Deprecated. Returns path patterns.
 ServletContext getServletContext()
          Deprecated. Returns ServletContext for this Web application.
 Set<Integer> getSupportedVersions()
          Deprecated. Returns set of supported WebSocket Protocol versions.
 int getTimeoutSecs()
          Deprecated. Returns timeout values in seconds.
 Set<WebSocketConnection> getWebSocketConnections()
          Deprecated. Returns set of opened WebSocket connections.
 void setMaxConnections(int maxConnections)
          Deprecated. Sets maximum connections.
 void setMaxMessageSize(int maxMessageSize)
          Deprecated. Sets maximum message size.
 void setTimeoutSecs(int timeout)
          Deprecated. Sets timeout values in seconds.
 

Method Detail

getServletContext

ServletContext getServletContext()
Deprecated. 
Returns ServletContext for this Web application.

Returns:
instance of ServletContext

getPathPatterns

String[] getPathPatterns()
Deprecated. 
Returns path patterns.

Returns:
path patterns

getTimeoutSecs

int getTimeoutSecs()
Deprecated. 
Returns timeout values in seconds.

Returns:
timeout value in seconds

setTimeoutSecs

void setTimeoutSecs(int timeout)
Deprecated. 
Sets timeout values in seconds.

Parameters:
timeout - value in seconds

getMaxMessageSize

int getMaxMessageSize()
Deprecated. 
Returns maximum message size.

Returns:
maximum message size

setMaxMessageSize

void setMaxMessageSize(int maxMessageSize)
Deprecated. 
Sets maximum message size.

Parameters:
maxMessageSize - integer value of maximum message size

getMaxConnections

int getMaxConnections()
Deprecated. 
Returns maximum connections.

Returns:
maximum connections

setMaxConnections

void setMaxConnections(int maxConnections)
Deprecated. 
Sets maximum connections.

Parameters:
maxConnections - integer value of maximum connections

getWebSocketConnections

Set<WebSocketConnection> getWebSocketConnections()
Deprecated. 
Returns set of opened WebSocket connections.

Returns:
set of opened WebSocket connections

getSupportedVersions

Set<Integer> getSupportedVersions()
Deprecated. 
Returns set of supported WebSocket Protocol versions.

Returns:
set of supported WebSocket Protocol versions

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02