com.jogamp.common.net.PiggybackURLContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gluegen-rt Show documentation
Show all versions of gluegen-rt Show documentation
JNI binding generator (runtime)
package com.jogamp.common.net;
import java.io.IOException;
import java.net.URLConnection;
/**
* See {@link PiggybackURLConnection} for description and examples.
*/
public interface PiggybackURLContext {
/** Returns the specific protocol, constant for this implementation. */
public String getImplementedProtocol();
/**
* Resolving path to a URL sub protocol and return it's open URLConnection
**/
public URLConnection resolve(String path) throws IOException;
}