All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osgi.service.url.URLStreamHandlerService Maven / Gradle / Ivy

There is a newer version: 7.0.5
Show newest version
/*
 * Copyright (c) OSGi Alliance (2002, 2008). All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.osgi.service.url;

import java.net.*;

/**
 * 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 * {@link 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 AbstractURLStreamHandlerService * * @ThreadSafe * @version $Revision: 5673 $ */ public interface URLStreamHandlerService { /** * @see "java.net.URLStreamHandler.openConnection" */ public URLConnection openConnection(URL u) throws java.io.IOException; /** * Parse a URL. This method is called by the URLStreamHandler * proxy, instead of java.net.URLStreamHandler.parseURL, * passing a URLStreamHandlerSetter object. * * @param realHandler The object on which setURL must be * invoked for this URL. * @see "java.net.URLStreamHandler.parseURL" */ public void parseURL(URLStreamHandlerSetter realHandler, URL u, String spec, int start, int limit); /** * @see "java.net.URLStreamHandler.toExternalForm" */ public String toExternalForm(URL u); /** * @see "java.net.URLStreamHandler.equals(URL, URL)" */ public boolean equals(URL u1, URL u2); /** * @see "java.net.URLStreamHandler.getDefaultPort" */ public int getDefaultPort(); /** * @see "java.net.URLStreamHandler.getHostAddress" */ public InetAddress getHostAddress(URL u); /** * @see "java.net.URLStreamHandler.hashCode(URL)" */ public int hashCode(URL u); /** * @see "java.net.URLStreamHandler.hostsEqual" */ public boolean hostsEqual(URL u1, URL u2); /** * @see "java.net.URLStreamHandler.sameFile" */ public boolean sameFile(URL u1, URL u2); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy