Searched defs:jarURL (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/crypto/
H A DJarVerifier.java48 private URL jarURL; field in class:JarVerifier
55 * @param jarURL the JAR file to be verified.
59 JarVerifier(URL jarURL, boolean savePerms) { argument
60 this.jarURL = jarURL;
78 // If the protocol of jarURL isn't "jar", we should
81 final URL url = jarURL.getProtocol().equalsIgnoreCase("jar")?
82 jarURL : new URL("jar:" + jarURL.toString() + "!/");
120 jarURL
[all...]

Completed in 351 milliseconds