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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DUtil.java62 * @param uriPath the uriPath (as returned by java.net.URI#getPath()
65 public static String getParentUriPath(String uriPath) { argument
66 int idx = uriPath.lastIndexOf('/');
68 if (uriPath.endsWith("/")) {
69 uriPath = uriPath.substring(0,idx); // trim trailing slash
70 idx = uriPath.lastIndexOf('/'); // move idx to parent context
73 return uriPath.substring(0, idx)+"/";
77 * Calculate the normalized form of the given uriPath
88 normalizeUriPath(String uriPath) argument
[all...]

Completed in 62 milliseconds