ZDK
IContextEventsHandler.h
1 #ifndef __ICONTEXTNOTIFICAITONS__
2 #define __ICONTEXTNOTIFICAITONS__
3 
4 #include "IEventHandle.h"
5 #include "Types/SharedPointerTypes.h"
6 #include "Types/ActivationStatus.h"
7 
8 namespace ZDK
9 {
10 
11 //# @abi(obj_c|jni) delegate
13 {
14 public:
15  //# @abi(all) documentation
25  virtual void OnContextSecureCertError(ZDK::Shared::Context context, ZDK::Shared::SecureCertData secureCert) = 0;
26 
27  //# @abi(all) documentation
38  virtual void OnContextActivationCompleted(ZDK::Shared::Context context, ZDK::Shared::ActivationResult activationResult) = 0;
39 };
40 
41 } //namespace ZDK
42 
43 #endif //__ICONTEXTNOTIFICAITONS__
virtual void OnContextSecureCertError(ZDK::Shared::Context context, ZDK::Shared::SecureCertData secureCert)=0
Notify upon Secure certificate error occurs.
virtual void OnContextActivationCompleted(ZDK::Shared::Context context, ZDK::Shared::ActivationResult activationResult)=0
Notify upon user activation occurs.
Definition: IEventHandle.h:11
Definition: IAccountConfig.h:10
Definition: IContextEventsHandler.h:12