Interface URLStreamHandlerService

  • All Known Implementing Classes:
    AbstractURLStreamHandlerService

    @ConsumerType
    public interface URLStreamHandlerService
    Service interface with public versions of the protected java.net.URLStreamHandler methods.

    The important differences between this interface and the URLStreamHandler class are that the setURL method is absent and the parseURL method takes a URLStreamHandlerSetter object as the first argument. Classes implementing this interface must call the setURL method on the URLStreamHandlerSetter object received in the parseURL method instead of URLStreamHandler.setURL to avoid a SecurityException.

    See Also:
    AbstractURLStreamHandlerService
    • Method Detail

      • openConnection

        java.net.URLConnection openConnection​(java.net.URL u)
                                       throws java.io.IOException
        Throws:
        java.io.IOException
        See Also:
        "java.net.URLStreamHandler.openConnection"
      • parseURL

        void parseURL​(URLStreamHandlerSetter realHandler,
                      java.net.URL u,
                      java.lang.String spec,
                      int start,
                      int limit)
        Parse a URL. This method is called by the URLStreamHandler proxy, instead of java.net.URLStreamHandler.parseURL, passing a URLStreamHandlerSetter object.
        Parameters:
        realHandler - The object on which setURL must be invoked for this URL.
        See Also:
        "java.net.URLStreamHandler.parseURL"
      • toExternalForm

        java.lang.String toExternalForm​(java.net.URL u)
        See Also:
        "java.net.URLStreamHandler.toExternalForm"
      • equals

        boolean equals​(java.net.URL u1,
                       java.net.URL u2)
        See Also:
        "java.net.URLStreamHandler.equals(URL, URL)"
      • getDefaultPort

        int getDefaultPort()
        See Also:
        "java.net.URLStreamHandler.getDefaultPort"
      • getHostAddress

        java.net.InetAddress getHostAddress​(java.net.URL u)
        See Also:
        "java.net.URLStreamHandler.getHostAddress"
      • hashCode

        int hashCode​(java.net.URL u)
        See Also:
        "java.net.URLStreamHandler.hashCode(URL)"
      • hostsEqual

        boolean hostsEqual​(java.net.URL u1,
                           java.net.URL u2)
        See Also:
        "java.net.URLStreamHandler.hostsEqual"
      • sameFile

        boolean sameFile​(java.net.URL u1,
                         java.net.URL u2)
        See Also:
        "java.net.URLStreamHandler.sameFile"