URLStreamHandlerProvider (Java SE 10 & JDK 10 )
- java.lang.Object
-
- java.net.spi.URLStreamHandlerProvider
-
- All Implemented Interfaces:
URLStreamHandlerFactory
public abstract class URLStreamHandlerProvider extends Object implements URLStreamHandlerFactory
URL stream handler service-provider class.
A URL stream handler provider is a concrete subclass of this class that has a zero-argument constructor. URL stream handler providers may be installed in an instance of the Java platform by adding them to the application class path.
A URL stream handler provider identifies itself with a provider-configuration file named java.net.spi.URLStreamHandlerProvider in the resource directory META-INF/services. The file should contain a list of fully-qualified concrete URL stream handler provider class names, one per line.
URL stream handler providers are located at runtime, as specified in the URL constructor.
- Since:
- 9
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedURLStreamHandlerProvider()Initializes a new URL stream handler provider.
-
-
-
Constructor Detail
-
URLStreamHandlerProvider
protected URLStreamHandlerProvider()
Initializes a new URL stream handler provider.
- Throws:
SecurityException- If a security manager has been installed and it deniesRuntimePermission("setFactory").
-
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.