Class Handler


  • public class Handler
    extends java.net.URLStreamHandler
    URLStreamHandler for jar: protocol URLs.
    Version:
    $Id: Handler.java 126 2006-01-12 04:17:51Z $
    Author:
    bob mcwhirter
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static Handler INSTANCE
      Singleton instance.
    • Constructor Summary

      Constructors 
      Constructor Description
      Handler()
      Construct.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static Handler getInstance()
      Retrieve the singleton instance.
      java.net.URLConnection openConnection​(java.net.URL url)  
      void parseURL​(java.net.URL url, java.lang.String spec, int start, int limit)  
      • Methods inherited from class java.net.URLStreamHandler

        equals, getDefaultPort, getHostAddress, hashCode, hostsEqual, openConnection, sameFile, setURL, setURL, toExternalForm
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • INSTANCE

        private static final Handler INSTANCE
        Singleton instance.
    • Constructor Detail

      • Handler

        public Handler()
        Construct.
    • Method Detail

      • getInstance

        public static Handler getInstance()
        Retrieve the singleton instance.
        Returns:
        The singleton instance.
      • openConnection

        public java.net.URLConnection openConnection​(java.net.URL url)
                                              throws java.io.IOException
        Specified by:
        openConnection in class java.net.URLStreamHandler
        Throws:
        java.io.IOException
        See Also:
        URLStreamHandler
      • parseURL

        public void parseURL​(java.net.URL url,
                             java.lang.String spec,
                             int start,
                             int limit)
        Overrides:
        parseURL in class java.net.URLStreamHandler
        See Also:
        URLStreamHandler