Interface ParsedURLProtocolHandler
- All Known Implementing Classes:
AbstractParsedURLProtocolHandler, ParsedURLDataProtocolHandler, ParsedURLDefaultProtocolHandler, ParsedURLJarProtocolHandler
public interface ParsedURLProtocolHandler
Provider interface for new url protocols, used by the ParsedURL class.
- Version:
- $Id$
-
Method Summary
Modifier and TypeMethodDescriptionReturns the protocol to be handled by this class.Parse an absolute url string.Parse a relative url string of this protocol.
-
Method Details
-
getProtocolHandled
String getProtocolHandled()Returns the protocol to be handled by this class. The protocol must _always_ be the part of the URL before the first ':'. -
parseURL
Parse an absolute url string. -
parseURL
Parse a relative url string of this protocol.
-