Jabber Guest iOS SDK
CJGuestInvalidCertAlertView.h
1 //
2 // CJGuestInvalidCertAlertView.h
3 // JabberGuest
4 //
5 // Copyright (c) 2013 Cisco Systems, Inc. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 #import <UIKit/UIKit.h>
10 #import <JabberGuest/JabberGuest.h>
11 
17 @optional
24 - (void)didFinishWithAcceptance:(BOOL)accepted;
25 @end
26 
27 @interface CJGuestInvalidCertAlertView : UIAlertView
28 - (id)initWithCertificateInfo:(NSString*)certFingerprint certSubjectCN:(NSString*)certSubjectCN referenceID:(NSString*)referenceID invalidReason:(NSArray*)invalidReason subjectCertificateData:(NSString*)subjectCertificateData intermediateCACertificateData:(NSArray*)intermediateCACertificateData invalidCertCallback:(id<CJGuestInvalidCertCallback>)invalidCertCallback;
29 - (void)handleInvalidCertificate;
30 @property (weak) id<CJGuestInvalidCertAlertViewDelegate> invalidCertViewDelegate;
31 @end
An object implementing this protocol is passed to the CJGuestInvalidCertDelegate. ...
Definition: CJGuestCall.h:19
Any object using the CJGuestInvalidCertAlertView may implement this protocol to be notified when the ...
Definition: CJGuestInvalidCertAlertView.h:16