onCertificateChallenge:(NSString *) method

Called when the ODPCertificateChallengeListenerDelegate protocol is implemented by the class.

Syntax

public virtual void onCertificateChallenge: (NSString * certInfo)

Usage

The application should implement this method to receive the certificate information. 
 Usage

-(void) onCertificateChallenge:certInfo  
{
     NSLog("Cert Info is: %", certInfo);
     [ODPClientListeners certificateChallengeResult:YES];
}