|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.atlassian.confluence.web.UrlBuilder
public final class UrlBuilder
A builder which can construct URLs by adding parameters. Not thread-safe.
| Constructor Summary | |
|---|---|
UrlBuilder(String baseUrl)
Constructs a UTF-8 URL builder with the given base URL. |
|
UrlBuilder(String baseUrl,
String encoding)
Constructs a builder with the given base URL, which should already be URL-encoded. |
|
| Method Summary | |
|---|---|
UrlBuilder |
add(String name,
boolean value)
Adds a parameter to the URL. |
UrlBuilder |
add(String name,
int value)
Adds a parameter to the URL. |
UrlBuilder |
add(String name,
long value)
Adds a parameter to the URL. |
UrlBuilder |
add(String name,
String value)
Adds a parameter to the URL. |
UrlBuilder |
add(String name,
String[] values)
Retrieving parameters from a ServletRequest will provide you with String array values. |
UrlBuilder |
addAll(Map<String,Object> params)
Add multiple parameters to the URL from a map. |
UrlBuilder |
addAnchor(String anchor)
Sets an anchor for the URL. |
String |
toString()
|
String |
toUrl()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public UrlBuilder(String baseUrl)
UrlBuilder(String, String)
baseUrl - The base URL
public UrlBuilder(String baseUrl,
String encoding)
baseUrl - Base URL to which a query string is appendedencoding - Encoding to use, e.g. UTF-8| Method Detail |
|---|
public UrlBuilder add(String name,
String value)
throws IllegalArgumentException
name - the name of the parametervalue - the value of the parameter
IllegalArgumentException - if either the name or value is null
public UrlBuilder add(String name,
String[] values)
name - the name of the parametervalues - one or more values for the parameter
IllegalArgumentException - if the name or values are null null
public UrlBuilder add(String name,
long value)
throws IllegalArgumentException
name - Parameter name (part before =)value - Parameter value (part after =)
IllegalArgumentException - When things are nulladd(String, String)
public UrlBuilder add(String name,
int value)
throws IllegalArgumentException
name - Parameter name (part before =)value - Parameter value (part after =)
IllegalArgumentException - When things are nulladd(String, String)
public UrlBuilder add(String name,
boolean value)
throws IllegalArgumentException
name - Parameter name (part before =)value - Parameter value (part after =)
IllegalArgumentException - When things are nulladd(String, String)public UrlBuilder addAnchor(String anchor)
anchor - Anchor name (part after #)
public UrlBuilder addAll(Map<String,Object> params)
params - A map of parameters to add to the URL
public String toString()
toString in class Objectpublic String toUrl()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||