Class NSURLSessionAuthChallengeDisposition


  • public final class NSURLSessionAuthChallengeDisposition
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long CancelAuthenticationChallenge
      The entire request will be canceled; the credential parameter is ignored.
      static long PerformDefaultHandling
      Default handling for the challenge - as if this delegate were not implemented; the credential parameter is ignored.
      static long RejectProtectionSpace
      This challenge is rejected and the next authentication protection space should be tried; the credential parameter is ignored.
      static long UseCredential
      Use the specified credential, which may be nil
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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