Example usage for java.net URLStreamHandler subclass-usage

List of usage examples for java.net URLStreamHandler subclass-usage

Introduction

In this page you can find the example usage for java.net URLStreamHandler subclass-usage.

Usage

From source file org.bytesoft.bytetcc.supports.zk.TransactionCuratorClient.java

public class TransactionCuratorClient extends URLStreamHandler implements InitializingBean, DisposableBean,
        BeanFactoryPostProcessor, CuratorWatcher, CuratorListener, ConnectionStateListener {

    static final String KEY_DUBBO_REGISTRY_ZOOKEEPER = "zookeeper";
    static final String KEY_DUBBO_REGISTRY_ADDRESS = "address";
    static final String KEY_DUBBO_REGISTRY_PROTOCOL = "protocol";

From source file de.axelfaust.alfresco.nashorn.repo.loaders.WebScriptURLStreamHandler.java

/**
 * @author Axel Faust
 */
public class WebScriptURLStreamHandler extends URLStreamHandler
        implements InitializingBean, DisposableBean, ResettableScriptProcessorElement {

From source file org.fit.cssbox.scriptbox.url.javascript.Handler.java

/**
 * Handler that enables us to use JAVASCRIPT protocol and also provides 
 * URL connection that executes underlying JavaScript source code. 
 *
 * @author Radim Loskot
 * @version 0.9

From source file DummyAppletContext.java

class DummyURLStreamHandler extends URLStreamHandler {

    protected final URLConnection openConnection(URL u) throws IOException {
        return new DummyURLConnection(u);
    }