Uses of Class
org.restlet.data.ChallengeRequest
-
Packages that use ChallengeRequest Package Description org.restlet Core classes of the API.org.restlet.data Information exchanged by components.org.restlet.engine.header Supports HTTP header parsing and formatting.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.resource Client and server resource classes.org.restlet.security Classes related to security.org.restlet.util Various utility classes. -
-
Uses of ChallengeRequest in org.restlet
Fields in org.restlet with type parameters of type ChallengeRequest Modifier and Type Field Description private java.util.List<ChallengeRequest>Response. challengeRequestsThe authentication requests sent by an origin server to a client.private java.util.List<ChallengeRequest>Response. proxyChallengeRequestsThe authentication requests sent by a proxy to a client.Methods in org.restlet that return types with arguments of type ChallengeRequest Modifier and Type Method Description java.util.List<ChallengeRequest>Response. getChallengeRequests()Returns the list of authentication requests sent by an origin server to a client.java.util.List<ChallengeRequest>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 ChallengeRequest Modifier and Type Method Description voidResponse. setChallengeRequests(java.util.List<ChallengeRequest> challengeRequests)Sets the list of authentication requests sent by an origin server to a client.voidResponse. setProxyChallengeRequests(java.util.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 ChallengeRequest Constructor Description ChallengeResponse(ChallengeRequest challengeRequest, Response response, java.lang.String identifier, char[] secret)Constructor.ChallengeResponse(ChallengeRequest challengeRequest, Response response, java.lang.String identifier, char[] secret, java.lang.String secretAlgorithm)Constructor.ChallengeResponse(ChallengeRequest challengeRequest, Response response, java.lang.String identifier, java.lang.String secret)Constructor. -
Uses of ChallengeRequest in org.restlet.engine.header
Methods in org.restlet.engine.header that return ChallengeRequest Modifier and Type Method Description ChallengeRequestChallengeRequestReader. readValue()Methods in org.restlet.engine.header that return types with arguments of type ChallengeRequest Modifier and Type Method Description HeaderWriter<ChallengeRequest>ChallengeWriter. append(ChallengeRequest value)Methods in org.restlet.engine.header with parameters of type ChallengeRequest Modifier and Type Method Description HeaderWriter<ChallengeRequest>ChallengeWriter. append(ChallengeRequest value) -
Uses of ChallengeRequest in org.restlet.engine.security
Methods in org.restlet.engine.security that return types with arguments of type ChallengeRequest Modifier and Type Method Description static java.util.List<ChallengeRequest>AuthenticatorUtils. parseRequest(Response response, java.lang.String header, Series<Header> httpHeaders)Parses an authenticate header into a list of challenge request.Methods in org.restlet.engine.security with parameters of type ChallengeRequest Modifier and Type Method Description voidAuthenticatorHelper. formatRequest(ChallengeWriter cw, ChallengeRequest challenge, Response response, Series<Header> httpHeaders)Formats a challenge request as raw credentials.static java.lang.StringAuthenticatorUtils. formatRequest(ChallengeRequest challenge, Response response, Series<Header> httpHeaders)Formats a challenge request as a 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.ext.crypto
Methods in org.restlet.ext.crypto that return ChallengeRequest Modifier and Type Method Description protected ChallengeRequestDigestAuthenticator. createChallengeRequest(boolean stale) -
Uses of ChallengeRequest in org.restlet.ext.crypto.internal
Methods in org.restlet.ext.crypto.internal with parameters of type ChallengeRequest Modifier and Type Method Description voidHttpDigestHelper. formatRequest(ChallengeWriter cw, ChallengeRequest challenge, Response response, Series<Header> httpHeaders)voidHttpDigestHelper. 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 ChallengeRequest Modifier and Type Method Description java.util.List<ChallengeRequest>Resource. getChallengeRequests()Returns the list of authentication requests sent by an origin server to a client.java.util.List<ChallengeRequest>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 ChallengeRequest Modifier and Type Method Description voidServerResource. setChallengeRequests(java.util.List<ChallengeRequest> requests)Sets the list of authentication requests sent by an origin server to a client.voidServerResource. setProxyChallengeRequests(java.util.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 ChallengeRequest Modifier and Type Method Description protected 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 ChallengeRequest Modifier and Type Method Description java.util.List<ChallengeRequest>WrapperResponse. getChallengeRequests()Returns the list of authentication requests sent by an origin server to a client.java.util.List<ChallengeRequest>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 ChallengeRequest Modifier and Type Method Description voidWrapperResponse. setChallengeRequests(java.util.List<ChallengeRequest> requests)Sets the list of authentication requests sent by an origin server to a client.voidWrapperResponse. setProxyChallengeRequests(java.util.List<ChallengeRequest> requests)Sets the list of authentication requests sent by a proxy to a client.
-