Package apple.foundation.enums
Class NSURLSessionAuthChallengeDisposition
- java.lang.Object
-
- apple.foundation.enums.NSURLSessionAuthChallengeDisposition
-
public final class NSURLSessionAuthChallengeDisposition extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longCancelAuthenticationChallengeThe entire request will be canceled; the credential parameter is ignored.static longPerformDefaultHandlingDefault handling for the challenge - as if this delegate were not implemented; the credential parameter is ignored.static longRejectProtectionSpaceThis challenge is rejected and the next authentication protection space should be tried; the credential parameter is ignored.static longUseCredentialUse the specified credential, which may be nil
-
-
-
Field Detail
-
UseCredential
public static final long UseCredential
Use the specified credential, which may be nil- See Also:
- Constant Field Values
-
PerformDefaultHandling
public static final long PerformDefaultHandling
Default handling for the challenge - as if this delegate were not implemented; the credential parameter is ignored.- See Also:
- Constant Field Values
-
CancelAuthenticationChallenge
public static final long CancelAuthenticationChallenge
The entire request will be canceled; the credential parameter is ignored.- See Also:
- Constant Field Values
-
RejectProtectionSpace
public static final long RejectProtectionSpace
This challenge is rejected and the next authentication protection space should be tried; the credential parameter is ignored.- See Also:
- Constant Field Values
-
-