Uses of Class
org.restlet.data.ChallengeResponse

Packages that use ChallengeResponse
org.restlet.engine.adapter Adapters between low-level HTTP calls and high-level Restlet Request and Response objects. 
org.restlet.engine.connector New advanced internal HTTP connector. 
org.restlet.engine.security Supports security. 
org.restlet.resource Client and server resource classes. 
org.restlet.util Various utility classes. 
 

Uses of ChallengeResponse in org.restlet.engine.adapter
 

Methods in org.restlet.engine.adapter that return ChallengeResponse
 ChallengeResponse HttpRequest.getChallengeResponse()
           
 ChallengeResponse HttpRequest.getProxyChallengeResponse()
           
 

Methods in org.restlet.engine.adapter with parameters of type ChallengeResponse
 void HttpRequest.setChallengeResponse(ChallengeResponse response)
           
 void HttpRequest.setProxyChallengeResponse(ChallengeResponse response)
           
 

Uses of ChallengeResponse in org.restlet.engine.connector
 

Methods in org.restlet.engine.connector that return ChallengeResponse
 ChallengeResponse HttpInboundRequest.getChallengeResponse()
           
 ChallengeResponse HttpInboundRequest.getProxyChallengeResponse()
           
 

Methods in org.restlet.engine.connector with parameters of type ChallengeResponse
 void HttpInboundRequest.setChallengeResponse(ChallengeResponse response)
           
 void HttpInboundRequest.setProxyChallengeResponse(ChallengeResponse response)
           
 

Uses of ChallengeResponse in org.restlet.engine.security
 

Methods in org.restlet.engine.security that return ChallengeResponse
static ChallengeResponse AuthenticatorUtils.parseResponse(Request request, String header, Series<Header> httpHeaders)
          Parses an authorization header into a challenge response.
 

Methods in org.restlet.engine.security with parameters of type ChallengeResponse
static String AuthenticatorUtils.formatResponse(ChallengeResponse challenge, Request request, Series<Header> httpHeaders)
          Formats a challenge response as a HTTP header value.
 void HttpBasicHelper.formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)
           
 void SmtpPlainHelper.formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)
           
 void AuthenticatorHelper.formatResponse(ChallengeWriter cw, ChallengeResponse challenge, Request request, Series<Header> httpHeaders)
          Formats a challenge response as raw credentials.
 void HttpBasicHelper.parseResponse(ChallengeResponse challenge, Request request, Series<Header> httpHeaders)
           
 void AuthenticatorHelper.parseResponse(ChallengeResponse challenge, Request request, Series<Header> httpHeaders)
          Parses an authorization header into a challenge response.
static void AuthenticatorUtils.update(ChallengeResponse challengeResponse, Request request, Response response)
          Updates a ChallengeResponse object according to given request and response.
static Reference AuthenticatorUtils.updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)
          Optionally updates the request with a challenge response before sending it.
 Reference AuthenticatorHelper.updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)
          Optionally updates the request with a challenge response before sending it.
 

Uses of ChallengeResponse in org.restlet.resource
 

Methods in org.restlet.resource that return ChallengeResponse
 ChallengeResponse Resource.getChallengeResponse()
          Returns the authentication response sent by a client to an origin server.
 ChallengeResponse Resource.getProxyChallengeResponse()
          Returns the proxy authentication response sent by a client to an origin server.
 

Methods in org.restlet.resource with parameters of type ChallengeResponse
 void ClientResource.setChallengeResponse(ChallengeResponse challengeResponse)
          Sets the authentication response sent by a client to an origin server.
 void ClientResource.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
 ChallengeResponse WrapperRequest.getChallengeResponse()
          Returns the authentication response sent by a client to an origin server.
 ChallengeResponse WrapperRequest.getProxyChallengeResponse()
          Returns the authentication response sent by a client to a proxy.
 

Methods in org.restlet.util with parameters of type ChallengeResponse
 void WrapperRequest.setChallengeResponse(ChallengeResponse response)
          Sets the authentication response sent by a client to an origin server.
 void WrapperRequest.setProxyChallengeResponse(ChallengeResponse response)
          Sets the authentication response sent by a client to a proxy.
 



Copyright © 2005-2014 Restlet.