Uses of Class
org.restlet.data.ChallengeResponse
-
Packages that use ChallengeResponse Package Description org.restlet Core classes of the API.org.restlet.engine.adapter Adapters between low-level HTTP calls and high-level Restlet Request and Response objects.org.restlet.engine.security Supports security.org.restlet.ext.crypto Support for cryptography including Amazon S3 and Windows Azure client authentication.org.restlet.ext.crypto.internal org.restlet.ext.javamail Integration with JavaMail @minor-version@ (POP3 and SMTP clients).org.restlet.ext.nio.internal.request org.restlet.resource Client and server resource classes.org.restlet.util Various utility classes. -
-
Uses of ChallengeResponse in org.restlet
Fields in org.restlet declared as ChallengeResponse Modifier and Type Field Description private ChallengeResponseRequest. challengeResponseThe authentication response sent by a client to an origin server.private ChallengeResponseRequest. proxyChallengeResponseThe authentication response sent by a client to a proxy.Methods in org.restlet that return ChallengeResponse Modifier and Type Method Description ChallengeResponseRequest. getChallengeResponse()Returns the authentication response sent by a client to an origin server.ChallengeResponseRequest. getProxyChallengeResponse()Returns the authentication response sent by a client to a proxy.Methods in org.restlet with parameters of type ChallengeResponse Modifier and Type Method Description voidRequest. setChallengeResponse(ChallengeResponse challengeResponse)Sets the authentication response sent by a client to an origin server.voidRequest. setProxyChallengeResponse(ChallengeResponse challengeResponse)Sets the authentication response sent by a client to a proxy. -
Uses of ChallengeResponse in org.restlet.engine.adapter
Methods in org.restlet.engine.adapter that return ChallengeResponse Modifier and Type Method Description ChallengeResponseHttpRequest. getChallengeResponse()ChallengeResponseHttpRequest. getProxyChallengeResponse()Methods in org.restlet.engine.adapter with parameters of type ChallengeResponse Modifier and Type Method Description voidHttpRequest. setChallengeResponse(ChallengeResponse response)voidHttpRequest. setProxyChallengeResponse(ChallengeResponse response) -
Uses of ChallengeResponse in org.restlet.engine.security
Methods in org.restlet.engine.security that return ChallengeResponse Modifier and Type Method Description static ChallengeResponseAuthenticatorUtils. parseResponse(Request request, java.lang.String header, Series<Header> httpHeaders)Parses an authorization header into a challenge response.Methods in org.restlet.engine.security with parameters of type ChallengeResponse Modifier and Type Method Description voidAuthenticatorHelper. formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)Formats a challenge response as raw credentials.static java.lang.StringAuthenticatorUtils. formatResponse(ChallengeResponse challenge, Request request, Series<Header> httpHeaders)Formats a challenge response as a HTTP header value.voidHttpBasicHelper. formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)voidSmtpPlainHelper. formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)voidAuthenticatorHelper. parseResponse(ChallengeResponse challenge, Request request, Series<Header> httpHeaders)Parses an authorization header into a challenge response.voidHttpBasicHelper. parseResponse(ChallengeResponse challenge, Request request, Series<Header> httpHeaders)static voidAuthenticatorUtils. update(ChallengeResponse challengeResponse, Request request, Response response)Updates aChallengeResponseobject according to given request and response.ReferenceAuthenticatorHelper. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)Optionally updates the request with a challenge response before sending it.static ReferenceAuthenticatorUtils. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)Optionally updates the request with a challenge response before sending it. -
Uses of ChallengeResponse in org.restlet.ext.crypto
Methods in org.restlet.ext.crypto that return ChallengeResponse Modifier and Type Method Description protected ChallengeResponseCookieAuthenticator. parseCredentials(java.lang.String cookieValue)Decodes the credentials stored in a cookie into a properChallengeResponseobject.Methods in org.restlet.ext.crypto with parameters of type ChallengeResponse Modifier and Type Method Description java.lang.StringCookieAuthenticator. formatCredentials(ChallengeResponse challenge)Formats the raws credentials to store in the cookie. -
Uses of ChallengeResponse in org.restlet.ext.crypto.internal
Methods in org.restlet.ext.crypto.internal with parameters of type ChallengeResponse Modifier and Type Method Description voidHttpAwsS3Helper. formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)voidHttpAzureSharedKeyHelper. formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)voidHttpAzureSharedKeyLiteHelper. formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)voidHttpDigestHelper. formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)char[]HttpDigestHelper. formatResponseDigest(ChallengeResponse challengeResponse, Request request)Formats the response digest.voidHttpDigestHelper. parseResponse(ChallengeResponse challenge, Request request, Series<Header> httpHeaders)ReferenceHttpAwsQueryHelper. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request) -
Uses of ChallengeResponse in org.restlet.ext.javamail
Methods in org.restlet.ext.javamail that return ChallengeResponse Modifier and Type Method Description protected ChallengeResponseTriggerResource. getTargetChallengeResponse(Resolver<java.lang.String> resolver)Deprecated.Returns the authentication data sent by client to the target according to the a list of properties. -
Uses of ChallengeResponse in org.restlet.ext.nio.internal.request
Methods in org.restlet.ext.nio.internal.request that return ChallengeResponse Modifier and Type Method Description ChallengeResponseHttpInboundRequest. getChallengeResponse()Deprecated.ChallengeResponseHttpInboundRequest. getProxyChallengeResponse()Deprecated.Methods in org.restlet.ext.nio.internal.request with parameters of type ChallengeResponse Modifier and Type Method Description voidHttpInboundRequest. setChallengeResponse(ChallengeResponse response)Deprecated.voidHttpInboundRequest. setProxyChallengeResponse(ChallengeResponse response)Deprecated. -
Uses of ChallengeResponse in org.restlet.resource
Methods in org.restlet.resource that return ChallengeResponse Modifier and Type Method Description ChallengeResponseResource. getChallengeResponse()Returns the authentication response sent by a client to an origin server.ChallengeResponseResource. getProxyChallengeResponse()Returns the proxy authentication response sent by a client to an origin server.Methods in org.restlet.resource with parameters of type ChallengeResponse Modifier and Type Method Description voidClientResource. setChallengeResponse(ChallengeResponse challengeResponse)Sets the authentication response sent by a client to an origin server.voidClientResource. setProxyChallengeResponse(ChallengeResponse challengeResponse)Sets the proxy authentication response sent by a client to an origin server. -
Uses of ChallengeResponse in org.restlet.util
Methods in org.restlet.util that return ChallengeResponse Modifier and Type Method Description ChallengeResponseWrapperRequest. getChallengeResponse()Returns the authentication response sent by a client to an origin server.ChallengeResponseWrapperRequest. getProxyChallengeResponse()Returns the authentication response sent by a client to a proxy.Methods in org.restlet.util with parameters of type ChallengeResponse Modifier and Type Method Description voidWrapperRequest. setChallengeResponse(ChallengeResponse response)Sets the authentication response sent by a client to an origin server.voidWrapperRequest. setProxyChallengeResponse(ChallengeResponse response)Sets the authentication response sent by a client to a proxy.
-