URIParser should parse the URI based on ths standard syntax components referred in http as [scheme:][//authority][path][?query][#fragment]
Type Params | Return Type | Name and description |
---|---|---|
|
java.lang.String |
getAuthority() This method returns the decoded authority component of the URI. |
|
java.lang.String |
getQuery() This method returns the decoded query of the URI. |
|
java.lang.String |
getResourcePath() This method returns the decoded path of the URI. |
|
java.lang.String |
getScheme() This method returns the scheme of the URI if there is one, otherwise empty space. |
This method returns the decoded authority component of the URI. Usually authority is composed of hostname and port.
This method returns the decoded query of the URI.
This method returns the decoded path of the URI.
This method returns the scheme of the URI if there is one, otherwise empty space.