Package apple.foundation.enums
Class NSURLCredentialPersistence
- java.lang.Object
-
- apple.foundation.enums.NSURLCredentialPersistence
-
public final class NSURLCredentialPersistence extends java.lang.Object[@enum] NSURLCredentialPersistence Constants defining how long a credential will be kept around [@constant] NSURLCredentialPersistenceNone This credential won't be saved. [@constant] NSURLCredentialPersistenceForSession This credential will only be stored for this session. [@constant] NSURLCredentialPersistencePermanent This credential will be stored permanently. Note: Whereas in Mac OS X any application can access any credential provided the user gives permission, in iPhone OS an application can access only its own credentials. [@constant] NSURLCredentialPersistenceSynchronizable This credential will be stored permanently. Additionally, this credential will be distributed to other devices based on the owning AppleID. Note: Whereas in Mac OS X any application can access any credential provided the user gives permission, on iOS an application can access only its own credentials.
-
-
Field Summary
Fields Modifier and Type Field Description static longForSessionstatic longNonestatic longPermanentstatic longSynchronizable
-
-
-
Field Detail
-
None
public static final long None
- See Also:
- Constant Field Values
-
ForSession
public static final long ForSession
- See Also:
- Constant Field Values
-
Permanent
public static final long Permanent
- See Also:
- Constant Field Values
-
Synchronizable
public static final long Synchronizable
- See Also:
- Constant Field Values
-
-