|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Series | |
|---|---|
| org.restlet.data | Information exchanged by components. |
| org.restlet.engine | Implementation of Restlet API. |
| org.restlet.engine.adapter | Adapters between low-level HTTP calls and high-level Restlet Request and Response objects. |
| org.restlet.engine.connector | New advanced internal HTTP connector. |
| org.restlet.engine.header | Supports HTTP header parsing and formatting. |
| org.restlet.engine.security | Supports security. |
| org.restlet.engine.util | General utilities. |
| org.restlet.resource | Client and server resource classes. |
| org.restlet.security | Classes related to security. |
| org.restlet.util | Various utility classes. |
| Uses of Series in org.restlet.data |
|---|
| Subclasses of Series in org.restlet.data | |
|---|---|
class |
Form
Form which is a specialized modifiable list of parameters. |
| Methods in org.restlet.data that return Series | |
|---|---|
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. |
Series<Parameter> |
MediaType.getParameters()
Returns the unmodifiable list of parameters corresponding to subtype modifiers. |
| Methods in org.restlet.data with parameters of type Series | |
|---|---|
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. |
| Constructors in org.restlet.data with parameters of type Series | |
|---|---|
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. |
|
| Uses of Series in org.restlet.engine |
|---|
| Methods in org.restlet.engine that return Series | |
|---|---|
Series<Parameter> |
RestletHelper.getHelpedParameters()
Returns the helped Restlet parameters. |
| Uses of Series in org.restlet.engine.adapter |
|---|
| Methods in org.restlet.engine.adapter that return Series | |
|---|---|
Series<Cookie> |
HttpRequest.getCookies()
Returns the cookies provided by the client. |
Series<Header> |
HttpResponse.getHeaders()
Returns the HTTP headers. |
Series<Header> |
HttpRequest.getHeaders()
Returns the HTTP headers. |
Series<Header> |
Call.getRequestHeaders()
Returns the modifiable list of request headers. |
Series<Header> |
Call.getResponseHeaders()
Returns the modifiable list of server headers. |
| Uses of Series in org.restlet.engine.connector |
|---|
| Methods in org.restlet.engine.connector that return Series | |
|---|---|
Series<Cookie> |
HttpInboundRequest.getCookies()
Returns the cookies provided by the client. |
Series<Header> |
HttpInboundRequest.getHeaders()
|
Series<Header> |
InboundRequest.getHeaders()
Returns the headers. |
Series<Header> |
Way.getHeaders()
Returns the response headers. |
| Methods in org.restlet.engine.connector with parameters of type Series | |
|---|---|
protected void |
OutboundWay.addEntityHeaders(Representation entity,
Series<Header> headers)
Adds the entity headers for the given response. |
protected void |
OutboundWay.addGeneralHeaders(Series<Header> headers)
Adds the general headers from the Message to the Series. |
protected abstract void |
OutboundWay.addHeaders(Series<Header> headers)
Add all the headers, including the general, the message specific and the entity headers. |
protected void |
ClientOutboundWay.addHeaders(Series<Header> headers)
|
protected void |
ServerOutboundWay.addHeaders(Series<Header> headers)
|
protected void |
ClientOutboundWay.addRequestHeaders(Series<Header> headers)
Adds the request headers. |
protected void |
ServerOutboundWay.addResponseHeaders(Series<Header> headers)
Adds the response headers. |
protected void |
ClientInboundWay.copyResponseTransportHeaders(Series<Header> headers,
Response response)
Copies headers into a response. |
protected Representation |
InboundWay.createEntity(Series<Header> headers)
Returns the message entity if available. |
void |
HttpInboundRequest.setHeaders(Series<Header> headers)
|
void |
InboundRequest.setHeaders(Series<Header> headers)
Put the headers in the request's attributes map. |
protected void |
Way.setHeaders(Series<Header> headers)
Sets the response headers to be written. |
| Uses of Series in org.restlet.engine.header |
|---|
| Methods in org.restlet.engine.header that return Series | |
|---|---|
protected Series<Parameter> |
PreferenceReader.extractMediaParams(Series<Parameter> parameters)
Extract the media parameters. |
| Methods in org.restlet.engine.header with parameters of type Series | |
|---|---|
static void |
HeaderUtils.addEntityHeaders(Representation entity,
Series<Header> headers)
Adds the entity headers based on the Representation to the
Series. |
static void |
HeaderUtils.addExtensionHeaders(Series<Header> existingHeaders,
Series<Header> additionalHeaders)
Adds extension headers if they are non-standard headers. |
static void |
HeaderUtils.addExtensionHeaders(Series<Header> existingHeaders,
Series<Header> additionalHeaders)
Adds extension headers if they are non-standard headers. |
static void |
HeaderUtils.addGeneralHeaders(Message message,
Series<Header> headers)
Adds the general headers from the Message to the Series. |
static void |
HeaderUtils.addHeader(String headerName,
String headerValue,
Series<Header> headers)
Adds a header to the given list. |
static void |
HeaderUtils.addNotModifiedEntityHeaders(Representation entity,
Series<Header> headers)
Adds the entity headers based on the Representation to the
Series when a 304 (Not Modified) status is returned. |
static void |
HeaderUtils.addRequestHeaders(Request request,
Series<Header> headers)
Adds the headers based on the Request to the given Series
. |
static void |
HeaderUtils.addResponseHeaders(Response response,
Series<Header> headers)
Adds the headers based on the Response to the given
Series. |
static void |
HeaderUtils.copyExtensionHeaders(Series<Header> headers,
Response response)
Copies extension headers into a response. |
static void |
HeaderUtils.copyResponseTransportHeaders(Series<Header> headers,
Response response)
Copies headers into a response. |
protected Preference<T> |
PreferenceReader.createPreference(CharSequence metadata,
Series<Parameter> parameters)
Creates a new preference. |
protected Series<Parameter> |
PreferenceReader.extractMediaParams(Series<Parameter> parameters)
Extract the media parameters. |
protected float |
PreferenceReader.extractQuality(Series<Parameter> parameters)
Extract the quality value. |
static long |
HeaderUtils.getContentLength(Series<Header> headers)
Returns the content length of the request entity if know, Representation.UNKNOWN_SIZE otherwise. |
static boolean |
HeaderUtils.isChunkedEncoding(Series<Header> headers)
Indicates if the entity is chunked. |
static boolean |
HeaderUtils.isConnectionClose(Series<Header> headers)
Indicates if the connection must be closed. |
| Uses of Series in org.restlet.engine.security |
|---|
| Methods in org.restlet.engine.security with parameters of type Series | |
|---|---|
static String |
AuthenticatorUtils.formatRequest(ChallengeRequest challenge,
Response response,
Series<Header> httpHeaders)
Formats a challenge request as a HTTP header value. |
void |
HttpBasicHelper.formatRequest(ChallengeWriter cw,
ChallengeRequest challenge,
Response response,
Series<Header> httpHeaders)
|
void |
AuthenticatorHelper.formatRequest(ChallengeWriter cw,
ChallengeRequest challenge,
Response response,
Series<Header> httpHeaders)
Formats a challenge request as raw credentials. |
static String |
AuthenticatorUtils.formatResponse(ChallengeResponse challenge,
Request request,
Series<Header> httpHeaders)
Formats a challenge response as a HTTP header value. |
void |
HttpBasicHelper.formatResponse(ChallengeWriter cw,
ChallengeResponse challenge,
Request request,
Series<Header> httpHeaders)
|
void |
SmtpPlainHelper.formatResponse(ChallengeWriter cw,
ChallengeResponse challenge,
Request request,
Series<Header> httpHeaders)
|
void |
AuthenticatorHelper.formatResponse(ChallengeWriter cw,
ChallengeResponse challenge,
Request request,
Series<Header> httpHeaders)
Formats a challenge response as raw credentials. |
void |
HttpBasicHelper.parseRequest(ChallengeRequest challenge,
Response response,
Series<Header> httpHeaders)
|
void |
AuthenticatorHelper.parseRequest(ChallengeRequest challenge,
Response response,
Series<Header> httpHeaders)
Parses an authenticate header into a challenge request. |
static List<ChallengeRequest> |
AuthenticatorUtils.parseRequest(Response response,
String header,
Series<Header> httpHeaders)
Parses an authenticate header into a list of challenge request. |
void |
HttpBasicHelper.parseResponse(ChallengeResponse challenge,
Request request,
Series<Header> httpHeaders)
|
void |
AuthenticatorHelper.parseResponse(ChallengeResponse challenge,
Request request,
Series<Header> httpHeaders)
Parses an authorization header into a challenge response. |
static ChallengeResponse |
AuthenticatorUtils.parseResponse(Request request,
String header,
Series<Header> httpHeaders)
Parses an authorization header into a challenge response. |
| Uses of Series in org.restlet.engine.util |
|---|
| Subclasses of Series in org.restlet.engine.util | |
|---|---|
class |
CookieSeries
Deprecated. Use Series directly |
class |
CookieSettingSeries
Deprecated. Use Series directly |
| Methods in org.restlet.engine.util with parameters of type Series | |
|---|---|
void |
FormReader.addParameters(Series<Parameter> parameters)
Adds the parameters into a given series. |
| Uses of Series in org.restlet.resource |
|---|
| Methods in org.restlet.resource that return Series | |
|---|---|
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. |
| Methods in org.restlet.resource with parameters of type Series | |
|---|---|
void |
ClientResource.setCookies(Series<Cookie> cookies)
Sets the cookies provided by the client. |
void |
ServerResource.setCookieSettings(Series<CookieSetting> cookieSettings)
Sets the cookie settings provided by the server. |
| Uses of Series in org.restlet.security |
|---|
| Methods in org.restlet.security that return Series | |
|---|---|
Series<Parameter> |
Realm.getParameters()
Returns the modifiable series of parameters. |
| Methods in org.restlet.security with parameters of type Series | |
|---|---|
void |
Realm.setParameters(Series<Parameter> parameters)
Sets the modifiable series of parameters. |
| Uses of Series in org.restlet.util |
|---|
| Methods in org.restlet.util that return Series | |
|---|---|
Series<T> |
Series.createSeries(List<T> delegate)
Deprecated. Use Series(Class, List) constructor instead. |
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. |
static Series<? extends NamedValue> |
Series.unmodifiableSeries(Series<? extends NamedValue> series)
Returns an unmodifiable view of the specified series. |
| Methods in org.restlet.util with parameters of type Series | |
|---|---|
void |
WrapperRequest.setCookies(Series<Cookie> cookies)
|
void |
WrapperResponse.setCookieSettings(Series<CookieSetting> cookieSettings)
|
static Series<? extends NamedValue> |
Series.unmodifiableSeries(Series<? extends NamedValue> series)
Returns an unmodifiable view of the specified series. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||