List of usage examples for java.net URLStreamHandler subclass-usage
From source file jsaf.protocol.tftp.TftpURLStreamHandler.java
/**
* Stream handler class for TFTP URLs.
*
* @author David A. Solin
* @version %I% %G%
*/
From source file com.github.ctrimble.neon.asm.LabelURLStreamHandler.java
public class LabelURLStreamHandler extends URLStreamHandler { String label; public LabelURLStreamHandler(String label) { this.label = label; }
From source file com.github.ctrimble.chlorine.asm.LabelURLStreamHandler.java
public class LabelURLStreamHandler extends URLStreamHandler { String label; public LabelURLStreamHandler(String label) { this.label = label; }
From source file org.mc4j.ems.connection.support.classloader.deepjar.Handler.java
/** * @author Greg Hinkle (ghinkle@users.sourceforge.net), May 9, 2005 * @version $Revision: 629 $($Author: ianpspringer $ / $Date: 2011-10-28 23:44:26 +0200 (Fr, 28 Okt 2011) $) */ public class Handler extends URLStreamHandler {
From source file org.apache.synapse.util.ClasspathURLStreamHandler.java
public final class ClasspathURLStreamHandler extends URLStreamHandler { public URLConnection openConnection(URL url) { return new URLConnectionImpl(url); }
From source file com.wallabystreet.kinjo.common.transport.protocol.jxta.Handler.java
/**
* This class extends the abstract <code>URLStreamHandler</code> standard
* library type. It accepts URLs that represent <a
* href"http://spec.jxta.org/nonav/v1.0/docbook/JXTAProtocols.html#ids">JXTA IDs</a>
* and creates appropriate <code>URLConnection</code> instances for them.
* <p />
From source file org.springframework.richclient.image.Handler.java
/**
* <p>
* A URL protocol handler that resolves images from an ImageSource.
* </p>
* <p>
* The syntax of an "image:" URL is: <code>image:{imageKey}</code>
From source file com.jaspersoft.jasperserver.api.engine.jasperreports.util.JarURLStreamHandler.java
/** * @author Lucian Chirita (lucianc@users.sourceforge.net) * @version $Id: JarURLStreamHandler.java 47331 2014-07-18 09:13:06Z kklein $ */ public class JarURLStreamHandler extends URLStreamHandler {
From source file ZipURLStreamHandler.java
/**
* <p>A URLStreamHandler which allows accessing specific zip entries within a
* zip file. The format of the file part of the URL is
* <code>[full path to the zip file]|[name of zip entry]</code>, but you are
* encouraged to use the
* <code>createURL(String fileName, String entryName)</code> method
From source file de.axelfaust.alfresco.nashorn.repo.loaders.AlfrescoClasspathURLStreamHandler.java
/** * @author Axel Faust */ public class AlfrescoClasspathURLStreamHandler extends URLStreamHandler implements InitializingBean, DisposableBean, ResettableScriptProcessorElement {