Uses of Class
org.restlet.data.ChallengeRequest
Packages that use ChallengeRequest
Package
Description
Core classes of the Restlet API.
Information exchanged by components.
Supports HTTP header parsing and formatting.
Supports security.
Client and server resource classes.
Classes related to security.
Various utility classes.
-
Uses of ChallengeRequest in org.restlet
Methods in org.restlet that return types with arguments of type ChallengeRequestModifier and TypeMethodDescriptionResponse.getChallengeRequests()Returns the list of authentication requests sent by an origin server to a client.Response.getProxyChallengeRequests()Returns the list of authentication requests sent by an origin server to a client.Method parameters in org.restlet with type arguments of type ChallengeRequestModifier and TypeMethodDescriptionvoidResponse.setChallengeRequests(List<ChallengeRequest> challengeRequests) Sets the list of authentication requests sent by an origin server to a client.voidResponse.setProxyChallengeRequests(List<ChallengeRequest> proxyChallengeRequests) Sets the modifiable list of authentication requests sent by a proxy to a client. -
Uses of ChallengeRequest in org.restlet.data
Constructors in org.restlet.data with parameters of type ChallengeRequestModifierConstructorDescriptionChallengeResponse(ChallengeRequest challengeRequest, Response response, String identifier, char[] secret) Constructor.ChallengeResponse(ChallengeRequest challengeRequest, Response response, String identifier, char[] secret, String secretAlgorithm) Constructor.ChallengeResponse(ChallengeRequest challengeRequest, Response response, String identifier, String secret) Constructor. -
Uses of ChallengeRequest in org.restlet.engine.header
Methods in org.restlet.engine.header that return ChallengeRequestMethods in org.restlet.engine.header that return types with arguments of type ChallengeRequestMethods in org.restlet.engine.header with parameters of type ChallengeRequest -
Uses of ChallengeRequest in org.restlet.engine.security
Methods in org.restlet.engine.security that return types with arguments of type ChallengeRequestModifier and TypeMethodDescriptionstatic List<ChallengeRequest>AuthenticatorUtils.parseRequest(Response response, String header, Series<Header> httpHeaders) Parses an WWW-Authenticate header into a list of challenge request.Methods in org.restlet.engine.security with parameters of type ChallengeRequestModifier and TypeMethodDescriptionvoidAuthenticatorHelper.formatRequest(ChallengeWriter cw, ChallengeRequest challenge, Response response, Series<Header> httpHeaders) Formats a challenge request as raw credentials.static StringAuthenticatorUtils.formatRequest(ChallengeRequest challenge, Response response, Series<Header> httpHeaders) Formats a challenge request as an HTTP header value.voidHttpBasicHelper.formatRequest(ChallengeWriter cw, ChallengeRequest challenge, Response response, Series<Header> httpHeaders) voidAuthenticatorHelper.parseRequest(ChallengeRequest challenge, Response response, Series<Header> httpHeaders) Parses an authenticate header into a challenge request.voidHttpBasicHelper.parseRequest(ChallengeRequest challenge, Response response, Series<Header> httpHeaders) -
Uses of ChallengeRequest in org.restlet.resource
Methods in org.restlet.resource that return types with arguments of type ChallengeRequestModifier and TypeMethodDescriptionResource.getChallengeRequests()Returns the list of authentication requests sent by an origin server to a client.Resource.getProxyChallengeRequests()Returns the list of proxy authentication requests sent by an origin server to a client.Method parameters in org.restlet.resource with type arguments of type ChallengeRequestModifier and TypeMethodDescriptionvoidServerResource.setChallengeRequests(List<ChallengeRequest> requests) Sets the list of authentication requests sent by an origin server to a client.voidServerResource.setProxyChallengeRequests(List<ChallengeRequest> requests) Sets the list of proxy authentication requests sent by an origin server to a client. -
Uses of ChallengeRequest in org.restlet.security
Methods in org.restlet.security that return ChallengeRequestModifier and TypeMethodDescriptionprotected ChallengeRequestChallengeAuthenticator.createChallengeRequest(boolean stale) Creates a new challenge request. -
Uses of ChallengeRequest in org.restlet.util
Methods in org.restlet.util that return types with arguments of type ChallengeRequestModifier and TypeMethodDescriptionWrapperResponse.getChallengeRequests()Returns the list of authentication requests sent by an origin server to a client.WrapperResponse.getProxyChallengeRequests()Returns the list of authentication requests sent by a proxy to a client.Method parameters in org.restlet.util with type arguments of type ChallengeRequestModifier and TypeMethodDescriptionvoidWrapperResponse.setChallengeRequests(List<ChallengeRequest> requests) Sets the list of authentication requests sent by an origin server to a client.voidWrapperResponse.setProxyChallengeRequests(List<ChallengeRequest> requests) Sets the list of authentication requests sent by a proxy to a client.