Uses of Class
org.eclipse.jetty.websocket.api.extensions.ExtensionConfig
-
Packages that use ExtensionConfig Package Description org.eclipse.jetty.websocket.api Jetty WebSocket APIorg.eclipse.jetty.websocket.api.extensions Jetty WebSocket API : WebSocket Extension APIorg.eclipse.jetty.websocket.client Jetty WebSocket Client APIorg.eclipse.jetty.websocket.common Jetty WebSocket Common : Implementation [Internal Use Only]org.eclipse.jetty.websocket.common.extensions Jetty WebSocket Common : Extension Implementationsorg.eclipse.jetty.websocket.common.extensions.compress Jetty WebSocket Common : Message Compression Extension Implementationsorg.eclipse.jetty.websocket.common.extensions.fragment Jetty WebSocket Common : Auto Fragment Extension Implementationorg.eclipse.jetty.websocket.common.extensions.identity Jetty WebSocket Common : Identity Extension Implementationorg.eclipse.jetty.websocket.common.io Jetty WebSocket Common : I/O Implementationorg.eclipse.jetty.websocket.jsr356 org.eclipse.jetty.websocket.servlet Jetty WebSocket Servlet API -
-
Uses of ExtensionConfig in org.eclipse.jetty.websocket.api
Methods in org.eclipse.jetty.websocket.api that return types with arguments of type ExtensionConfig Modifier and Type Method Description java.util.List<ExtensionConfig>
UpgradeRequest. getExtensions()
Get the list of WebSocket Extension Configurations for this Upgrade Request.java.util.List<ExtensionConfig>
UpgradeResponse. getExtensions()
Get the list of extensions that should be used for the websocket.Methods in org.eclipse.jetty.websocket.api with parameters of type ExtensionConfig Modifier and Type Method Description void
UpgradeRequest. addExtensions(ExtensionConfig... configs)
Add WebSocket Extension Configuration(s) to Upgrade Request.Method parameters in org.eclipse.jetty.websocket.api with type arguments of type ExtensionConfig Modifier and Type Method Description void
UpgradeRequest. setExtensions(java.util.List<ExtensionConfig> configs)
Set the list of WebSocket Extension configurations on the request.void
UpgradeResponse. setExtensions(java.util.List<ExtensionConfig> extensions)
Set the list of extensions that are approved for use with this websocket. -
Uses of ExtensionConfig in org.eclipse.jetty.websocket.api.extensions
Methods in org.eclipse.jetty.websocket.api.extensions that return ExtensionConfig Modifier and Type Method Description ExtensionConfig
Extension. getConfig()
The active configuration for this extension.static ExtensionConfig
ExtensionConfig. parse(java.lang.String parameterizedName)
Parse a single parameterized name.Methods in org.eclipse.jetty.websocket.api.extensions that return types with arguments of type ExtensionConfig Modifier and Type Method Description static java.util.List<ExtensionConfig>
ExtensionConfig. parseEnum(java.util.Enumeration<java.lang.String> valuesEnum)
Parse enumeration ofSec-WebSocket-Extensions
header values into aExtensionConfig
liststatic java.util.List<ExtensionConfig>
ExtensionConfig. parseList(java.lang.String... rawSecWebSocketExtensions)
Parse 1 or more rawSec-WebSocket-Extensions
header values into aExtensionConfig
listMethods in org.eclipse.jetty.websocket.api.extensions with parameters of type ExtensionConfig Modifier and Type Method Description void
ExtensionConfig. init(ExtensionConfig other)
Initialize the parameters on this config from the other configuration.abstract Extension
ExtensionFactory. newInstance(ExtensionConfig config)
Deprecated.Method parameters in org.eclipse.jetty.websocket.api.extensions with type arguments of type ExtensionConfig Modifier and Type Method Description static java.lang.String
ExtensionConfig. toHeaderValue(java.util.List<ExtensionConfig> configs)
Convert a list ofExtensionConfig
to a header valueConstructors in org.eclipse.jetty.websocket.api.extensions with parameters of type ExtensionConfig Constructor Description ExtensionConfig(ExtensionConfig copy)
Copy constructor -
Uses of ExtensionConfig in org.eclipse.jetty.websocket.client
Methods in org.eclipse.jetty.websocket.client that return types with arguments of type ExtensionConfig Modifier and Type Method Description java.util.List<ExtensionConfig>
ClientUpgradeResponse. getExtensions()
-
Uses of ExtensionConfig in org.eclipse.jetty.websocket.common
Methods in org.eclipse.jetty.websocket.common that return types with arguments of type ExtensionConfig Modifier and Type Method Description java.util.List<ExtensionConfig>
UpgradeRequestAdapter. getExtensions()
java.util.List<ExtensionConfig>
UpgradeResponseAdapter. getExtensions()
Get the list of extensions that should be used for the websocket.Methods in org.eclipse.jetty.websocket.common with parameters of type ExtensionConfig Modifier and Type Method Description void
UpgradeRequestAdapter. addExtensions(ExtensionConfig... configs)
Method parameters in org.eclipse.jetty.websocket.common with type arguments of type ExtensionConfig Modifier and Type Method Description void
UpgradeRequestAdapter. setExtensions(java.util.List<ExtensionConfig> configs)
void
UpgradeResponseAdapter. setExtensions(java.util.List<ExtensionConfig> extensions)
Set the list of extensions that are approved for use with this websocket. -
Uses of ExtensionConfig in org.eclipse.jetty.websocket.common.extensions
Methods in org.eclipse.jetty.websocket.common.extensions that return ExtensionConfig Modifier and Type Method Description ExtensionConfig
AbstractExtension. getConfig()
Methods in org.eclipse.jetty.websocket.common.extensions that return types with arguments of type ExtensionConfig Modifier and Type Method Description java.util.List<ExtensionConfig>
ExtensionStack. getNegotiatedExtensions()
Get the list of negotiated extensions, each entry being a full "name; params" extension configurationMethods in org.eclipse.jetty.websocket.common.extensions with parameters of type ExtensionConfig Modifier and Type Method Description Extension
WebSocketExtensionFactory. newInstance(ExtensionConfig config)
void
AbstractExtension. setConfig(ExtensionConfig config)
void
FrameCaptureExtension. setConfig(ExtensionConfig config)
Method parameters in org.eclipse.jetty.websocket.common.extensions with type arguments of type ExtensionConfig Modifier and Type Method Description void
ExtensionStack. negotiate(java.util.List<ExtensionConfig> configs)
Perform the extension negotiation. -
Uses of ExtensionConfig in org.eclipse.jetty.websocket.common.extensions.compress
Methods in org.eclipse.jetty.websocket.common.extensions.compress with parameters of type ExtensionConfig Modifier and Type Method Description void
PerMessageDeflateExtension. setConfig(ExtensionConfig config)
-
Uses of ExtensionConfig in org.eclipse.jetty.websocket.common.extensions.fragment
Methods in org.eclipse.jetty.websocket.common.extensions.fragment with parameters of type ExtensionConfig Modifier and Type Method Description void
FragmentExtension. setConfig(ExtensionConfig config)
-
Uses of ExtensionConfig in org.eclipse.jetty.websocket.common.extensions.identity
Methods in org.eclipse.jetty.websocket.common.extensions.identity with parameters of type ExtensionConfig Modifier and Type Method Description void
IdentityExtension. setConfig(ExtensionConfig config)
-
Uses of ExtensionConfig in org.eclipse.jetty.websocket.common.io
Methods in org.eclipse.jetty.websocket.common.io that return types with arguments of type ExtensionConfig Modifier and Type Method Description java.util.List<ExtensionConfig>
AbstractWebSocketConnection. getExtensions()
Get the list of extensions in use.Method parameters in org.eclipse.jetty.websocket.common.io with type arguments of type ExtensionConfig Modifier and Type Method Description void
AbstractWebSocketConnection. setExtensions(java.util.List<ExtensionConfig> extensions)
Get the list of extensions in use. -
Uses of ExtensionConfig in org.eclipse.jetty.websocket.jsr356
Subclasses of ExtensionConfig in org.eclipse.jetty.websocket.jsr356 Modifier and Type Class Description class
JsrExtensionConfig
Constructors in org.eclipse.jetty.websocket.jsr356 with parameters of type ExtensionConfig Constructor Description JsrExtension(ExtensionConfig cfg)
A configured extension -
Uses of ExtensionConfig in org.eclipse.jetty.websocket.servlet
Methods in org.eclipse.jetty.websocket.servlet that return types with arguments of type ExtensionConfig Modifier and Type Method Description java.util.List<ExtensionConfig>
ServletUpgradeRequest. getExtensions()
java.util.List<ExtensionConfig>
ServletUpgradeResponse. getExtensions()
Methods in org.eclipse.jetty.websocket.servlet with parameters of type ExtensionConfig Modifier and Type Method Description void
ServletUpgradeRequest. addExtensions(ExtensionConfig... configs)
Method parameters in org.eclipse.jetty.websocket.servlet with type arguments of type ExtensionConfig Modifier and Type Method Description void
ServletUpgradeRequest. setExtensions(java.util.List<ExtensionConfig> configs)
void
ServletUpgradeResponse. setExtensions(java.util.List<ExtensionConfig> configs)
-