Class WSURI


  • @Deprecated(since="2021-05-27")
    public final class WSURI
    extends java.lang.Object
    Deprecated.
    The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
    Utility methods for converting a URI between an HTTP(S) and WS(S) URI.
    • Constructor Summary

      Constructors 
      Constructor Description
      WSURI()
      Deprecated.
       
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static java.net.URI toHttp​(java.net.URI inputUri)
      Deprecated.
      Convert to HTTP http or https scheme URIs.
      static java.net.URI toWebsocket​(java.lang.CharSequence inputUrl)
      Deprecated.
      Convert to WebSocket ws or wss scheme URIs
      static java.net.URI toWebsocket​(java.lang.CharSequence inputUrl, java.lang.String query)
      Deprecated.
      Convert to WebSocket ws or wss scheme URIs
      static java.net.URI toWebsocket​(java.net.URI inputUri)
      Deprecated.
      Convert to WebSocket ws or wss scheme URIs
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • WSURI

        public WSURI()
        Deprecated.
    • Method Detail

      • toHttp

        public static java.net.URI toHttp​(java.net.URI inputUri)
                                   throws java.net.URISyntaxException
        Deprecated.
        Convert to HTTP http or https scheme URIs.

        Converting ws and wss URIs to their HTTP equivalent

        Parameters:
        inputUri - the input URI
        Returns:
        the HTTP scheme URI for the input URI.
        Throws:
        java.net.URISyntaxException - if unable to convert the input URI
      • toWebsocket

        public static java.net.URI toWebsocket​(java.lang.CharSequence inputUrl)
                                        throws java.net.URISyntaxException
        Deprecated.
        Convert to WebSocket ws or wss scheme URIs

        Converting http and https URIs to their WebSocket equivalent

        Parameters:
        inputUrl - the input URI
        Returns:
        the WebSocket scheme URI for the input URI.
        Throws:
        java.net.URISyntaxException - if unable to convert the input URI
      • toWebsocket

        public static java.net.URI toWebsocket​(java.lang.CharSequence inputUrl,
                                               java.lang.String query)
                                        throws java.net.URISyntaxException
        Deprecated.
        Convert to WebSocket ws or wss scheme URIs

        Converting http and https URIs to their WebSocket equivalent

        Parameters:
        inputUrl - the input URI
        query - the optional query string
        Returns:
        the WebSocket scheme URI for the input URI.
        Throws:
        java.net.URISyntaxException - if unable to convert the input URI
      • toWebsocket

        public static java.net.URI toWebsocket​(java.net.URI inputUri)
                                        throws java.net.URISyntaxException
        Deprecated.
        Convert to WebSocket ws or wss scheme URIs

        Converting http and https URIs to their WebSocket equivalent

        Parameters:
        inputUri - the input URI
        Returns:
        the WebSocket scheme URI for the input URI.
        Throws:
        java.net.URISyntaxException - if unable to convert the input URI