Uses of Class
org.forgerock.http.protocol.Form
-
Packages that use Form Package Description org.forgerock.http.protocol Models and manages elements of the Hypertext Transfer Protocol.org.forgerock.http.util Miscellaneous utility classes. -
-
Uses of Form in org.forgerock.http.protocol
Methods in org.forgerock.http.protocol that return Form Modifier and Type Method Description Form
Form. fromFormString(String s)
Parses a form URL-encoded string containing form parameters and stores them in this object.Form
Form. fromQueryString(String s)
Parses a URL-encoded query string containing form parameters and stores them in this object.Form
Form. fromRequestEntity(Request request)
Parses the URL-encoded form entity of a request and stores them in this object.Form
Form. fromRequestQuery(Request request)
Parses the query parameters of a request and stores them in this object.Form
Form. fromString(String s)
Deprecated.usefromFormString(String)
instead.Form
Request. getForm()
Returns a copy of the query parameters andapplication/x-www-form-urlencoded
entity decoded as a form. -
Uses of Form in org.forgerock.http.util
Methods in org.forgerock.http.util with parameters of type Form Modifier and Type Method Description static URI
Uris. appendQuery(URI uri, Form query)
Returns a new URI with the given query parameters appended to the original ones, if any.static URI
Uris. withQuery(URI uri, Form query)
Returns a new URI having the provided query parameters.
-