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

com.nitorcreations.willow.protocols.property.Handler Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.nitorcreations.willow.protocols.property;

import java.net.URL;
import java.net.URLConnection;

import com.nitorcreations.willow.protocols.ProxylessURLStreamHandler;

public class Handler extends ProxylessURLStreamHandler {
  public Handler() {
  }
  @Override
  protected URLConnection openConnection(URL u) {
    return new PropertyUrlConnection(u);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy