Package org.apache.cxf.common.util
Class URIParserUtil
java.lang.Object
org.apache.cxf.common.util.URIParserUtil
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
static String
getAbsoluteURI
(String arg) static String
static URL[]
pathToURLs
(String path) static String
relativize
(String base, String toBeRelativized) static String
relativize
(URI baseURI, URI toBeRelativizedURI) This is a custom implementation for doing what URI.relativize(URI uri) should be doing but is not actually doing when URI roots do not fully match.
-
Method Details
-
pathToURLs
-
escapeChars
-
normalize
-
getAbsoluteURI
-
relativize
- Throws:
URISyntaxException
-
relativize
This is a custom implementation for doing what URI.relativize(URI uri) should be doing but is not actually doing when URI roots do not fully match. See http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6226081- Parameters:
baseURI
- The base URItoBeRelativizedURI
- The URI to be relativized- Returns:
- The string value of the URI you'd expect to get as result of calling baseURI.relativize(toBeRelativizedURI). null is returned if the parameters are null or are not both absolute or not absolute.
- Throws:
URISyntaxException
-