Uses of Class
org.forgerock.http.protocol.Form
-
Packages that use Form Package Description org.forgerock.http.oauth2 This package provides APIs for OAuth 2.0 services implementations.org.forgerock.http.protocol Models and manages elements of the Hypertext Transfer Protocol.org.forgerock.http.util Miscellaneous utility classes.org.forgerock.oauth.clients.oidc OpenID Connect ForgeRock Client Implementation.org.forgerock.secrets.oauth2 A Secrets API backend that can obtain OAuth 2 access tokens from a token endpoint, along with a collection of grant type handlers. -
-
Uses of Form in org.forgerock.http.oauth2
Methods in org.forgerock.http.oauth2 that return Form Modifier and Type Method Description Form
OAuth2Error. toForm()
Returns the form representation of this error suitable for inclusion in an authorization call-back query.Methods in org.forgerock.http.oauth2 with parameters of type Form Modifier and Type Method Description static OAuth2Error
OAuth2Error. valueOfForm(Form form)
Parses the Form representation of an authorization call-back error as an OAuth 2.0 error. -
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)
Deprecated.Because Entity content should be read asynchronously.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
Entity. getForm()
Returns a copy of the "application/x-www-form-urlencoded" entity decoded as a form.Form
Request. getForm()
Deprecated.Form
Request. getQueryParams()
Returns a copy of the query parameters decoded as a form.Methods in org.forgerock.http.protocol that return types with arguments of type Form Modifier and Type Method Description Promise<Form,IOException>
Entity. getFormAsync()
Returns a promise of a copy of the "application/x-www-form-urlencoded" entity decoded as a form.Methods in org.forgerock.http.protocol with parameters of type Form Modifier and Type Method Description void
Entity. setForm(Form form)
Sets the content of this entity to the String representation of the providedForm
. -
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. -
Uses of Form in org.forgerock.oauth.clients.oidc
Methods in org.forgerock.oauth.clients.oidc that return Form Modifier and Type Method Description protected Form
OpenIDConnectClient. buildQuery(String nonce)
Creates the query that will be passed to the request. -
Uses of Form in org.forgerock.secrets.oauth2
Methods in org.forgerock.secrets.oauth2 that return types with arguments of type Form Modifier and Type Method Description protected Promise<Form,NoSuchSecretException>
AuthorizationCodeGrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
protected Promise<Form,NoSuchSecretException>
GrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
Handles the request by adding appropriate parameters to the OAuth 2.0 token endpoint request.protected Promise<Form,NoSuchSecretException>
JwtBearerGrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
protected Promise<Form,NoSuchSecretException>
RefreshTokenGrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
protected Promise<Form,NoSuchSecretException>
ResourceOwnerPasswordGrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
Methods in org.forgerock.secrets.oauth2 with parameters of type Form Modifier and Type Method Description protected Promise<Form,NoSuchSecretException>
AuthorizationCodeGrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
protected Promise<Form,NoSuchSecretException>
GrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
Handles the request by adding appropriate parameters to the OAuth 2.0 token endpoint request.protected Promise<Form,NoSuchSecretException>
JwtBearerGrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
protected Promise<Form,NoSuchSecretException>
RefreshTokenGrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
protected Promise<Form,NoSuchSecretException>
ResourceOwnerPasswordGrantTypeHandler. handle(Request tokenEndpointRequest, Form form)
-