Class WSURI
- java.lang.Object
-
- org.eclipse.jetty.websocket.api.util.WSURI
-
-
Constructor Summary
Constructors Constructor Description WSURI()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static URItoHttp(URI inputUri)Convert to HTTPhttporhttpsscheme URIs.static URItoWebsocket(CharSequence inputUrl)Convert to WebSocketwsorwssscheme URIsstatic URItoWebsocket(CharSequence inputUrl, String query)Convert to WebSocketwsorwssscheme URIsstatic URItoWebsocket(URI inputUri)Convert to WebSocketwsorwssscheme URIs
-
-
-
Method Detail
-
toHttp
public static URI toHttp(URI inputUri) throws URISyntaxException
Convert to HTTPhttporhttpsscheme URIs.Converting
wsandwssURIs to their HTTP equivalent- Parameters:
inputUri- the input URI- Returns:
- the HTTP scheme URI for the input URI.
- Throws:
URISyntaxException- if unable to convert the input URI
-
toWebsocket
public static URI toWebsocket(CharSequence inputUrl) throws URISyntaxException
Convert to WebSocketwsorwssscheme URIsConverting
httpandhttpsURIs to their WebSocket equivalent- Parameters:
inputUrl- the input URI- Returns:
- the WebSocket scheme URI for the input URI.
- Throws:
URISyntaxException- if unable to convert the input URI
-
toWebsocket
public static URI toWebsocket(CharSequence inputUrl, String query) throws URISyntaxException
Convert to WebSocketwsorwssscheme URIsConverting
httpandhttpsURIs to their WebSocket equivalent- Parameters:
inputUrl- the input URIquery- the optional query string- Returns:
- the WebSocket scheme URI for the input URI.
- Throws:
URISyntaxException- if unable to convert the input URI
-
toWebsocket
public static URI toWebsocket(URI inputUri) throws URISyntaxException
Convert to WebSocketwsorwssscheme URIsConverting
httpandhttpsURIs to their WebSocket equivalent- Parameters:
inputUri- the input URI- Returns:
- the WebSocket scheme URI for the input URI.
- Throws:
URISyntaxException- if unable to convert the input URI
-
-