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

com.nimbusds.openid.connect.sdk.util.ResourceRetriever Maven / Gradle / Ivy

package com.nimbusds.openid.connect.sdk.util;


import java.io.IOException;
import java.net.URL;


/**
 * Retriever of resources specified by URL.
 */
public interface ResourceRetriever {


	/**
	 * Retrieves the resource from the specified HTTP(S) URL.
	 *
	 * @param url The URL of the resource. Its scheme must be HTTP or 
	 *            HTTPS. Must not be {@code null}.
	 *
	 * @return The retrieved resource.
	 *
	 * @throws IOException If the HTTP connection to the specified URL 
	 *                     failed or the resource couldn't be retrieved.
	 */
	public Resource retrieveResource(final URL url) 
		throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy