]>
git.saurik.com Git - apple/security.git/blob - Keychain/KDSecCircle.h
5 // Created by J Osborne on 2/20/13.
9 #import "SecureObjectSync/SOSCloudCircle.h"
10 #import <Foundation/Foundation.h>
12 @interface KDSecCircle
: NSObject
14 @
property (readonly
) BOOL isInCircle
;
15 @
property (readonly
) BOOL isOutOfCircle
;
17 @
property (readonly
) SOSCCStatus rawStatus
;
19 @
property (readonly
) NSString
*status
;
20 @
property (readonly
) NSError
*error
;
22 // Both of these are arrays of KDCircelPeer objects
23 @
property (readonly
) NSArray
*peers
;
24 @
property (readonly
) NSArray
*applicants
;
26 -(void)addChangeCallback
:(dispatch_block_t
)callback
;
29 // these are "try to", and may (most likely will) not complete by the time they return
32 -(void)rejectApplicantId
:(NSString
*)applicantId
;
33 -(void)acceptApplicantId
:(NSString
*)applicantId
;