public interface CertificateProviderListenerPlus extends CertificateProviderListener
CertificateProviderListener
interface with a method, where the provider can pass
back a map of data to the application. Some of the providers might require their clients to implement
this method, so the best practice is to register listeners implementing the CertificateProviderListenerPlus
interface.
Created by I043971 on 2016.01.19..Modifier and Type | Method and Description |
---|---|
void |
initializationComplete(java.util.Map<java.lang.Object,java.lang.Object> paramsForStore)
Should be called by the Certificate Provider when initialization of the provider has finished.
|
void |
initializationFailed(int eCode,
java.lang.String eMsg)
Callback method which can be used to signal initialization errors back to the provider's client.
|
initializationComplete, onGetCertificateFailure, onGetCertificateSuccess, showUI
void initializationComplete(java.util.Map<java.lang.Object,java.lang.Object> paramsForStore)
CertificateProvider#setParameters(Map
method. These might be sensitive data, so the application should keep them in its secure store.paramsForStore
- parameters to be stored on the application side, e.g.
credentials for the providervoid initializationFailed(int eCode, java.lang.String eMsg)
eCode
- numerical error codeeMsg
- error description