OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AuthenticationException
(Results
1 - 25
of
27
) 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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar
/prebuilts/tools/common/http-client/
httpclient-4.1.1.jar
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/12/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/15/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/4/
android.jar
Completed in 668 milliseconds
1
2