HomeSort by relevance Sort by last modified time
    Searched refs:AuthenticationException (Results 1 - 25 of 34) sorted by null

1 2

  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/serialization/
AuthenticationExceptionTest.java 24 import javax.security.sasl.AuthenticationException;
29 * Test for AuthenticationException serialization
43 return new Object[] { new AuthenticationException(),
44 new AuthenticationException(msg),
45 new AuthenticationException(msgs[1]),
46 new AuthenticationException(msg, null),
47 new AuthenticationException(msgs[0], null),
48 new AuthenticationException(msg, cause),
49 new AuthenticationException(msgs[1], cause)
  /external/apache-http/src/org/apache/http/auth/
AuthenticationException.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthenticationException.java $
42 public class AuthenticationException extends ProtocolException {
47 * Creates a new AuthenticationException with a <tt>null</tt> detail message.
49 public AuthenticationException() {
54 * Creates a new AuthenticationException with the specified message.
58 public AuthenticationException(String message) {
63 * Creates a new AuthenticationException with the specified detail message and cause.
69 public AuthenticationException(String message, Throwable cause) {
InvalidCredentialsException.java 41 public class InvalidCredentialsException extends AuthenticationException {
AuthScheme.java 132 * @throws AuthenticationException if authorization string cannot
138 throws AuthenticationException;
  /external/smack/src/org/apache/harmony/javax/security/sasl/
AuthenticationException.java 20 public class AuthenticationException extends SaslException {
24 public AuthenticationException() {
28 public AuthenticationException(String detail) {
32 public AuthenticationException(String detail, Throwable ex) {
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngineException.java 33 import org.apache.http.auth.AuthenticationException;
42 public class NTLMEngineException extends AuthenticationException {
NTLMScheme.java 36 import org.apache.http.auth.AuthenticationException;
108 final HttpRequest request) throws AuthenticationException {
132 throw new AuthenticationException("Unexpected state: " + this.state);
BasicScheme.java 36 import org.apache.http.auth.AuthenticationException;
125 * @throws AuthenticationException if authorization string cannot
132 final HttpRequest request) throws AuthenticationException {
DigestScheme.java 40 import org.apache.http.auth.AuthenticationException;
214 * @throws AuthenticationException if authorization string cannot
221 final HttpRequest request) throws AuthenticationException {
258 * @throws AuthenticationException when MD5 is an unsupported algorithm
260 private String createDigest(final Credentials credentials) throws AuthenticationException {
287 throw new AuthenticationException(
323 throw new AuthenticationException("Unhandled algorithm " + algorithm + " requested");
383 final String digest) throws AuthenticationException {
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
AuthenticationExceptionTest.java 24 import javax.security.sasl.AuthenticationException;
29 * Tests for constructors and methods of AuthenticationException class
50 * Test for <code>AuthenticationException()</code> constructor
51 * Assertion: constructs AuthenticationException with null message and
55 AuthenticationException tE;
56 tE = new AuthenticationException();
62 * Test for <code>AuthenticationException(String detail)</code> constructor
64 * constructs AuthenticationException with defined detail message.
68 AuthenticationException tE;
70 tE = new AuthenticationException(msgs[i])
    [all...]
  /external/apache-http/src/org/apache/http/client/
AuthenticationHandler.java 39 import org.apache.http.auth.AuthenticationException;
59 HttpContext context) throws AuthenticationException;
  /frameworks/base/core/tests/coretests/src/android/net/http/
DefaultHttpClientTest.java 31 import org.apache.http.auth.AuthenticationException;
109 } catch (AuthenticationException expected) {
113 } catch (AuthenticationException expected) {
117 } catch (AuthenticationException expected) {
121 } catch (AuthenticationException expected) {
  /external/apache-http/src/org/apache/http/client/protocol/
RequestProxyAuthentication.java 44 import org.apache.http.auth.AuthenticationException;
96 } catch (AuthenticationException ex) {
RequestTargetAuthentication.java 44 import org.apache.http.auth.AuthenticationException;
97 } catch (AuthenticationException ex) {
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 47 import org.apache.http.auth.AuthenticationException;
112 final HttpContext context) throws AuthenticationException {
158 throw new AuthenticationException(
DefaultRequestDirector.java 57 import org.apache.http.auth.AuthenticationException;
728 } catch (AuthenticationException ex) {
757 } catch (AuthenticationException ex) {
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 24 import org.apache.http.auth.AuthenticationException;
150 } catch (final AuthenticationException e) {
151 Log.e(TAG, "AuthenticationException", e);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 24 import org.apache.http.auth.AuthenticationException;
162 throws JSONException, ParseException, IOException, AuthenticationException {
210 throw new AuthenticationException();
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DefaultRequestDirector.java 785 } catch (AuthenticationException ex) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /external/smack/asmack-master/lib/
httpclient-4.1.3.jar 
  /prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/http-client/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 

Completed in 333 milliseconds

1 2