org.osgi.service.url |
|
Java Source File Name | Type | Comment |
AbstractURLStreamHandlerService.java | Class | Abstract implementation of the URLStreamHandlerService interface.
All the methods simply invoke the corresponding methods on
java.net.URLStreamHandler except for parseURL and
setURL , which use the URLStreamHandlerSetter
parameter. |
URLConstants.java | Interface | Defines standard names for property keys associated with
URLStreamHandlerService and java.net.ContentHandler
services. |
URLStreamHandlerService.java | Interface | 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. |
URLStreamHandlerSetter.java | Interface | Interface used by URLStreamHandlerService objects to call the
setURL method on the proxy URLStreamHandler object.
Objects of this type are passed to the
URLStreamHandlerService.parseURL method. |