Uses of Class
org.restlet.data.Parameter
Packages that use Parameter
Package
Description
Core classes of the Restlet API.
Information exchanged by components.
Implementation of Restlet API.
Supports HTTP header parsing and formatting.
Support SSL and TLS.
General utilities.
Client and server resource classes.
Classes related to security.
-
Uses of Parameter in org.restlet
Methods in org.restlet that return types with arguments of type ParameterModifier and TypeMethodDescriptionContext.getParameters()Returns the modifiable series of parameters.Method parameters in org.restlet with type arguments of type ParameterModifier and TypeMethodDescriptionvoidContext.setParameters(Series<Parameter> parameters) Sets the modifiable series of parameters. -
Uses of Parameter in org.restlet.data
Methods in org.restlet.data that return ParameterModifier and TypeMethodDescriptionstatic ParameterParameter.create(CharSequence name, CharSequence value) Creates a parameter.Form.createEntry(String name, String value) Methods in org.restlet.data that return types with arguments of type ParameterModifier and TypeMethodDescriptionParameter.createSeries()Creates a series that includes the current parameter as the initial entry.ChallengeMessage.getParameters()Returns the modifiable series of scheme parameters.Disposition.getParameters()Returns the list of disposition parameters.Expectation.getParameters()Returns the list of parameters.MediaType.getParameters()Returns the unmodifiable list of parameters corresponding to subtype modifiers.Preference.getParameters()Returns the modifiable list of parameters.Methods in org.restlet.data with parameters of type ParameterModifier and TypeMethodDescriptionReference.addQueryParameter(Parameter parameter) Adds a parameter to the query component.intMethod parameters in org.restlet.data with type arguments of type ParameterModifier and TypeMethodDescriptionReference.addQueryParameters(Iterable<Parameter> parameters) Adds several parameters to the query component.voidChallengeMessage.setParameters(Series<Parameter> parameters) Sets the parameters.voidDisposition.setParameters(Series<Parameter> parameters) Sets the list of disposition parameters.voidExpectation.setParameters(List<Parameter> parameters) Sets the list of parameters.voidPreference.setParameters(Series<Parameter> parameters) Sets the modifiable list of parameters.Constructors in org.restlet.data with parameters of type ParameterModifierConstructorDescriptionConstructor that clones an original media type.Constructor parameters in org.restlet.data with type arguments of type ParameterModifierConstructorDescriptionChallengeMessage(ChallengeScheme scheme, String realm, Series<Parameter> parameters) Constructor.ChallengeMessage(ChallengeScheme scheme, String realm, Series<Parameter> parameters, String digestAlgorithm, String opaque, String serverNonce) Constructor.ChallengeMessage(ChallengeScheme scheme, Series<Parameter> parameters) Constructor.ChallengeResponse(ChallengeScheme scheme, String identifier, char[] secret, Series<Parameter> parameters) Constructor.ChallengeResponse(ChallengeScheme scheme, String identifier, Series<Parameter> parameters) 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 serverNonceCount, long timeIssued) Constructor.Disposition(String type, Series<Parameter> parameters) Constructor.Constructor.Constructor.Constructor.Constructor that clones an original media type by extracting its parent media type then adding a new set of parameters.Preference(T metadata, float quality, Series<Parameter> parameters) Constructor. -
Uses of Parameter in org.restlet.engine
Methods in org.restlet.engine that return types with arguments of type ParameterModifier and TypeMethodDescriptionRestletHelper.getHelpedParameters()Returns the helped Restlet parameters. -
Uses of Parameter in org.restlet.engine.header
Methods in org.restlet.engine.header that return ParameterModifier and TypeMethodDescriptionprotected final ParameterHeaderReader.createParameter(String name) Creates a new parameter with a null value.protected ParameterHeaderReader.createParameter(String name, String value) Creates a new parameter.HeaderReader.readParameter()Reads the next pair as a parameter.Methods in org.restlet.engine.header that return types with arguments of type ParameterModifier and TypeMethodDescriptionPreferenceReader.extractMediaParams(Series<Parameter> parameters) Extract the media parameters.Methods in org.restlet.engine.header with parameters of type ParameterModifier and TypeMethodDescriptionChallengeWriter.appendChallengeParameter(Parameter parameter) Appends a new challenge parameter, prefixed with a comma.ChallengeWriter.appendQuotedChallengeParameter(Parameter parameter) Appends a new parameter, prefixed with a comma.Method parameters in org.restlet.engine.header with type arguments of type ParameterModifier and TypeMethodDescriptionprotected Preference<T>PreferenceReader.createPreference(CharSequence metadata, Series<Parameter> parameters) Creates a new preference.PreferenceReader.extractMediaParams(Series<Parameter> parameters) Extract the media parameters.protected floatPreferenceReader.extractQuality(Series<Parameter> parameters) Extract the quality value. -
Uses of Parameter in org.restlet.engine.ssl
Method parameters in org.restlet.engine.ssl with type arguments of type ParameterModifier and TypeMethodDescriptionvoidSets the following options according to parameters that may have been set up directly in the HttpsClientHelper or HttpsServerHelper parameters.abstract voidInitialize the factory with the given connector parameters. -
Uses of Parameter in org.restlet.engine.util
Methods in org.restlet.engine.util that return ParameterModifier and TypeMethodDescriptionstatic ParameterFormUtils.create(CharSequence name, CharSequence value, boolean decode, CharacterSet characterSet) Creates a parameter.static ParameterFormUtils.getFirstParameter(String query, String name, CharacterSet characterSet, char separator, boolean decode) Reads the first parameter with the given name.static ParameterFormUtils.getFirstParameter(Representation post, String name) Reads the first parameter with the given name.FormReader.readFirstParameter(String name) Reads the first parameter with the given name.FormReader.readNextParameter()Reads the next parameter available or null.Methods in org.restlet.engine.util with parameters of type ParameterModifier and TypeMethodDescriptionstatic booleanFormUtils.isParameterFound(Parameter searchedParam, MediaType mediaRange) Indicates if the searched parameter is specified in the given media range.Method parameters in org.restlet.engine.util with type arguments of type ParameterModifier and TypeMethodDescriptionvoidFormReader.addParameters(Series<Parameter> parameters) Adds the parameters into a given series. -
Uses of Parameter in org.restlet.resource
Methods in org.restlet.resource with parameters of type ParameterModifier and TypeMethodDescriptionClientResource.addQueryParameter(Parameter parameter) Adds a parameter to the query component.Method parameters in org.restlet.resource with type arguments of type ParameterModifier and TypeMethodDescriptionClientResource.addQueryParameters(Iterable<Parameter> parameters) Adds several parameters to the query component. -
Uses of Parameter in org.restlet.security
Methods in org.restlet.security that return types with arguments of type ParameterModifier and TypeMethodDescriptionRealm.getParameters()Returns the modifiable series of parameters.Method parameters in org.restlet.security with type arguments of type ParameterModifier and TypeMethodDescriptionvoidRealm.setParameters(Series<Parameter> parameters) Sets the modifiable series of parameters.