Jabber Guest iOS SDK
 All Classes Functions Variables Enumerations Enumerator Properties Groups
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