OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MalformedChallengeException
(Results
1 - 13
of
13
) sorted by null
/external/apache-http/src/org/apache/http/auth/
MalformedChallengeException.java
2
* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/
MalformedChallengeException
.java $
48
public class
MalformedChallengeException
extends ProtocolException {
53
* Creates a new
MalformedChallengeException
with a <tt>null</tt> detail message.
55
public
MalformedChallengeException
() {
60
* Creates a new
MalformedChallengeException
with the specified message.
64
public
MalformedChallengeException
(String message) {
69
* Creates a new
MalformedChallengeException
with the specified detail message and cause.
75
public
MalformedChallengeException
(String message, Throwable cause) {
AuthScheme.java
85
void processChallenge(final Header header) throws
MalformedChallengeException
;
/external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java
37
import org.apache.http.auth.
MalformedChallengeException
;
73
* @throws
MalformedChallengeException
is thrown if the authentication challenge
76
public void processChallenge(final Header header) throws
MalformedChallengeException
{
86
throw new
MalformedChallengeException
("Unexpected header name: " + authheader);
97
throw new
MalformedChallengeException
("Header value is null");
113
throw new
MalformedChallengeException
("Invalid scheme identifier: " + s);
120
CharArrayBuffer buffer, int pos, int len) throws
MalformedChallengeException
;
RFC2617Scheme.java
38
import org.apache.http.auth.
MalformedChallengeException
;
72
final CharArrayBuffer buffer, int pos, int len) throws
MalformedChallengeException
{
77
throw new
MalformedChallengeException
("Authentication challenge is empty");
BasicScheme.java
39
import org.apache.http.auth.
MalformedChallengeException
;
94
* @throws
MalformedChallengeException
is thrown if the authentication challenge
99
final Header header) throws
MalformedChallengeException
{
NTLMScheme.java
39
import org.apache.http.auth.
MalformedChallengeException
;
97
final CharArrayBuffer buffer, int pos, int len) throws
MalformedChallengeException
{
DigestScheme.java
43
import org.apache.http.auth.
MalformedChallengeException
;
125
* @throws
MalformedChallengeException
is thrown if the authentication challenge
130
final Header header) throws
MalformedChallengeException
{
134
throw new
MalformedChallengeException
("missing realm in challange");
137
throw new
MalformedChallengeException
("missing nonce in challange");
159
throw new
MalformedChallengeException
("None of the qop methods is supported");
/external/apache-http/src/org/apache/http/client/
AuthenticationHandler.java
40
import org.apache.http.auth.
MalformedChallengeException
;
59
HttpContext context) throws
MalformedChallengeException
;
/external/apache-http/src/org/apache/http/impl/client/
DefaultProxyAuthenticationHandler.java
40
import org.apache.http.auth.
MalformedChallengeException
;
69
final HttpContext context) throws
MalformedChallengeException
{
DefaultTargetAuthenticationHandler.java
40
import org.apache.http.auth.
MalformedChallengeException
;
69
final HttpContext context) throws
MalformedChallengeException
{
AbstractAuthenticationHandler.java
48
import org.apache.http.auth.
MalformedChallengeException
;
78
final Header[] headers) throws
MalformedChallengeException
{
90
throw new
MalformedChallengeException
("Header value is null");
DefaultRequestDirector.java
60
import org.apache.http.auth.
MalformedChallengeException
;
[
all
...]
/external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
DefaultRequestDirector.java
56
import org.apache.http.auth.
MalformedChallengeException
;
[
all
...]
Completed in 781 milliseconds