|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.nimbusds.oauth2.sdk.util.URLUtils
public class URLUtils
URL operations.
Field Summary | |
---|---|
static String |
CHARSET
The default character set. |
Method Summary | |
---|---|
static URL |
getBaseURL(URL url)
Gets the base part (protocol, host, port and path) of the specified URL. |
static Map<String,String> |
parseParameters(String query)
Parses the specified URL query string into a parameter map. |
static String |
serializeParameters(Map<String,String> params)
Serialises the specified map of parameters into a URL query string. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String CHARSET
Method Detail |
---|
public static URL getBaseURL(URL url)
url
- The URL. May be null
.
null
if the original URL
is null
or doesn't specify a protocol.public static String serializeParameters(Map<String,String> params)
application/x-www-form-urlencoded
encoded.
Note that the '?' character preceding the query string in GET requests is not included in the returned string.
Example query string:
response_type=code &client_id=s6BhdRkqt3 &state=xyz &redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
The opposite method is parseParameters(java.lang.String)
.
params
- A map of the URL query parameters. May be empty or
null
.
public static Map<String,String> parseParameters(String query)
application/x-www-form-urlencoded
decoded.
Note that the '?' character preceding the query string in GET requests must not be included.
Example query string:
response_type=code &client_id=s6BhdRkqt3 &state=xyz &redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
The opposite method serializeParameters(java.util.Map
.
query
- The URL query string to parse. May be null
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |