GlueGen v2.6.0-rc-20250712
GlueGen, Native Binding Generator for Java™ (public API).
PiggybackURLContext.java
Go to the documentation of this file.
1package com.jogamp.common.net;
2
3import java.io.IOException;
4import java.net.URLConnection;
5
6/**
7 * See {@link PiggybackURLConnection} for description and examples.
8 */
9public interface PiggybackURLContext {
10
11 /** Returns the specific protocol, constant for this implementation. */
12 public String getImplementedProtocol();
13
14 /**
15 * Resolving path to a URL sub protocol and return it's open URLConnection
16 **/
17 public URLConnection resolve(String path) throws IOException;
18}
See PiggybackURLConnection for description and examples.
String getImplementedProtocol()
Returns the specific protocol, constant for this implementation.
URLConnection resolve(String path)
Resolving path to a URL sub protocol and return it's open URLConnection.