Package | Description |
---|---|
org.restlet.client |
Core classes of the API.
|
org.restlet.client.data |
Information exchanged by components.
|
org.restlet.client.resource |
Client and server resource classes.
|
org.restlet.client.util |
Various utility classes.
|
Modifier and Type | Method and Description |
---|---|
Series<Cookie> |
Request.getCookies()
Returns the modifiable series of cookies provided by the client.
|
Series<CookieSetting> |
Response.getCookieSettings()
Returns the modifiable series of cookie settings provided by the server.
|
Series<Header> |
Message.getHeaders()
Returns the series of lower-level HTTP headers.
|
Series<Parameter> |
Context.getParameters()
Returns the modifiable series of parameters.
|
Modifier and Type | Method and Description |
---|---|
void |
Request.setCookies(Series<Cookie> cookies)
Sets the modifiable series of cookies provided by the client.
|
void |
Response.setCookieSettings(Series<CookieSetting> cookieSettings)
Sets the modifiable series of cookie settings provided by the server.
|
void |
Context.setParameters(Series<Parameter> parameters)
Sets the modifiable series of parameters.
|
Modifier and Type | Class and Description |
---|---|
class |
Form
Form which is a specialized modifiable list of parameters.
|
Modifier and Type | Method and Description |
---|---|
Series<Parameter> |
Form.createSeries(List<Parameter> delegate) |
Series<Parameter> |
MediaType.getParameters()
Returns the unmodifiable list of parameters corresponding to subtype
modifiers.
|
Series<Parameter> |
Disposition.getParameters()
Returns the list of disposition parameters.
|
Series<Parameter> |
ChallengeMessage.getParameters()
Returns the modifiable series of scheme parameters.
|
Series<Parameter> |
Preference.getParameters()
Returns the modifiable list of parameters.
|
Modifier and Type | Method and Description |
---|---|
void |
Disposition.setParameters(Series<Parameter> parameters)
Sets the list of disposition parameters.
|
void |
ChallengeMessage.setParameters(Series<Parameter> parameters)
Sets the parameters.
|
void |
Preference.setParameters(Series<Parameter> parameters)
Sets the modifiable list of parameters.
|
Constructor and Description |
---|
ChallengeMessage(ChallengeScheme scheme,
Series<Parameter> parameters)
Constructor.
|
ChallengeMessage(ChallengeScheme scheme,
String realm,
Series<Parameter> parameters)
Constructor.
|
ChallengeMessage(ChallengeScheme scheme,
String realm,
Series<Parameter> parameters,
String digestAlgorithm,
String opaque,
String serverNonce)
Constructor.
|
ChallengeResponse(ChallengeScheme scheme,
Series<Parameter> parameters,
String identifier,
char[] secret,
String secretAlgorithm,
String realm,
String quality,
Reference digestRef,
String digestAlgorithm,
String opaque,
String clientNonce,
String serverNonce,
int serverNounceCount,
long timeIssued)
Constructor.
|
ChallengeResponse(ChallengeScheme scheme,
String identifier,
char[] secret,
Series<Parameter> parameters)
Constructor.
|
ChallengeResponse(ChallengeScheme scheme,
String identifier,
Series<Parameter> parameters)
Constructor.
|
Disposition(String type,
Series<Parameter> parameters)
Constructor.
|
MediaType(String name,
Series<Parameter> parameters)
Constructor.
|
MediaType(String name,
Series<Parameter> parameters,
String description)
Constructor.
|
Preference(T metadata,
float quality,
Series<Parameter> parameters)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
Series<Cookie> |
Resource.getCookies()
Returns the modifiable series of cookies provided by the client.
|
Series<CookieSetting> |
Resource.getCookieSettings()
Returns the modifiable series of cookie settings provided by the server.
|
Modifier and Type | Method and Description |
---|---|
void |
ClientResource.setCookies(Series<Cookie> cookies)
Sets the cookies provided by the client.
|
Modifier and Type | Method and Description |
---|---|
abstract Series<T> |
Series.createSeries(List<T> delegate)
Creates a new series.
|
Series<Cookie> |
WrapperRequest.getCookies()
Returns the cookies provided by the client.
|
Series<CookieSetting> |
WrapperResponse.getCookieSettings()
Returns the cookie settings provided by the server.
|
Series<T> |
Series.subList(int fromIndex,
int toIndex)
Returns a view of the portion of this list between the specified
fromIndex, inclusive, and toIndex, exclusive.
|
Series<T> |
Series.subList(String name)
Returns a list of all the values associated to the parameter name.
|
Series<T> |
Series.subList(String name,
boolean ignoreCase)
Returns a list of all the values associated to the parameter name.
|
Modifier and Type | Method and Description |
---|---|
void |
WrapperRequest.setCookies(Series<Cookie> cookies) |
void |
WrapperResponse.setCookieSettings(Series<CookieSetting> cookieSettings) |
Copyright © 2005-2017 Restlet.