25 lines
532 B
Java
25 lines
532 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.util.jar;
|
|
|
|
import com.tridium.util.jar.JarEntry;
|
|
import com.tridium.util.jar.JarURLConnection;
|
|
import java.net.URL;
|
|
import java.net.URLConnection;
|
|
import java.net.URLStreamHandler;
|
|
|
|
public class JarURLStreamHandler
|
|
extends URLStreamHandler {
|
|
private JarEntry entry;
|
|
|
|
public URLConnection openConnection(URL uRL) {
|
|
return new JarURLConnection(uRL, this.entry);
|
|
}
|
|
|
|
public JarURLStreamHandler(JarEntry jarEntry) {
|
|
this.entry = jarEntry;
|
|
}
|
|
}
|
|
|