Uses of Class
org.restlet.util.Series
-
Packages that use Series Package Description org.restlet Core classes of the API.org.restlet.data Information exchanged by components.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
Methods in org.restlet that return Series Modifier and Type Method 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.Methods in org.restlet with parameters of type Series Modifier and Type Method 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. -
Uses of Series in org.restlet.data
Subclasses of Series in org.restlet.data Modifier and Type Class Description class
Form
Form which is a specialized modifiable list of parameters.Methods in org.restlet.data that return Series Modifier and Type Method Description Series<Parameter>
ChallengeMessage. getParameters()
Returns the modifiable series of scheme parameters.Series<Parameter>
Disposition. getParameters()
Returns the list of disposition parameters.Series<Parameter>
MediaType. getParameters()
Returns the unmodifiable list of parameters corresponding to subtype modifiers.Series<Parameter>
Preference. getParameters()
Returns the modifiable list of parameters.Methods in org.restlet.data with parameters of type Series Modifier and Type Method Description void
ChallengeMessage. setParameters(Series<Parameter> parameters)
Sets the parameters.void
Disposition. setParameters(Series<Parameter> parameters)
Sets the list of disposition parameters.void
Preference. setParameters(Series<Parameter> parameters)
Sets the modifiable list of parameters.Constructors in org.restlet.data with parameters of type Series Constructor Description ChallengeMessage(ChallengeScheme scheme, java.lang.String realm, Series<Parameter> parameters)
Constructor.ChallengeMessage(ChallengeScheme scheme, java.lang.String realm, Series<Parameter> parameters, java.lang.String digestAlgorithm, java.lang.String opaque, java.lang.String serverNonce)
Constructor.ChallengeMessage(ChallengeScheme scheme, Series<Parameter> parameters)
Constructor.ChallengeResponse(ChallengeScheme scheme, java.lang.String identifier, char[] secret, Series<Parameter> parameters)
Constructor.ChallengeResponse(ChallengeScheme scheme, java.lang.String identifier, Series<Parameter> parameters)
Constructor.ChallengeResponse(ChallengeScheme scheme, Series<Parameter> parameters, java.lang.String identifier, char[] secret, java.lang.String secretAlgorithm, java.lang.String realm, java.lang.String quality, Reference digestRef, java.lang.String digestAlgorithm, java.lang.String opaque, java.lang.String clientNonce, java.lang.String serverNonce, int serverNounceCount, long timeIssued)
Constructor.Disposition(java.lang.String type, Series<Parameter> parameters)
Constructor.MediaType(java.lang.String name, Series<Parameter> parameters)
Constructor.MediaType(java.lang.String name, Series<Parameter> parameters, java.lang.String description)
Constructor.Preference(T metadata, float quality, Series<Parameter> parameters)
Constructor. -
Uses of Series in org.restlet.resource
Methods in org.restlet.resource that return Series Modifier and Type Method 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.Methods in org.restlet.resource with parameters of type Series Modifier and Type Method Description 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 Modifier and Type Method Description Series<Parameter>
Realm. getParameters()
Returns the modifiable series of parameters.Methods in org.restlet.security with parameters of type Series Modifier and Type Method Description 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 Modifier and Type Method Description 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(java.lang.String name)
Returns a list of all the values associated to the parameter name.Series<T>
Series. subList(java.lang.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 Modifier and Type Method Description 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.
-