Searched refs:simpleURL (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/
H A DURLCanonicalizer.java57 public String canonicalize(String simpleURL) { argument
58 String resultURL = simpleURL;
59 if (simpleURL.startsWith("ftp.")) {
60 resultURL = "ftp://" + simpleURL;
61 } else if (simpleURL.startsWith("gopher.")) {
62 resultURL = "gopher://" + simpleURL;
63 } else if (simpleURL.startsWith("/")) {
64 resultURL = "file:" + simpleURL;
65 } else if (!hasProtocolName(simpleURL)) {
66 if (isSimpleHostName(simpleURL)) {
[all...]

Completed in 26 milliseconds