Meeting SDK for Android API Reference
|
Data Structures | |
interface | InMeetingEncryptionControllerListener |
Public Member Functions | |
void | addListener (InMeetingEncryptionControllerListener listener) |
Register a listener for meeting encryption callback. | |
void | removeListener (InMeetingEncryptionControllerListener listener) |
Unregister the listener. | |
EncryptionType | getEncryptionType () |
Get meeting encryption type. | |
String | getE2EEMeetingSecurityCode () |
get E2EE meeting security code | |
int | getE2EEMeetingSecurityCodePassedSeconds () |
Returns the time the security code exists, in seconds. | |
boolean | isUnencryptedExceptionDataValid () |
Determine whether unencrypted exception data such as getUnencryptedExceptionCount() and getUnencryptedExceptionInfo() is valid This method can only be called when the encryption type is EncryptionType.Enhanced . | |
int | getUnencryptedExceptionCount () |
Returns unencrypted exception count. | |
String | getUnencryptedExceptionInfo () |
Returns unencrypted exception details. | |
Definition at line 5 of file InMeetingEncryptionController.java.
void us.zoom.sdk.InMeetingEncryptionController.addListener | ( | InMeetingEncryptionControllerListener | listener | ) |
Register a listener for meeting encryption callback.
listener | The listener instance. |
String us.zoom.sdk.InMeetingEncryptionController.getE2EEMeetingSecurityCode | ( | ) |
get E2EE meeting security code
int us.zoom.sdk.InMeetingEncryptionController.getE2EEMeetingSecurityCodePassedSeconds | ( | ) |
Returns the time the security code exists, in seconds.
EncryptionType us.zoom.sdk.InMeetingEncryptionController.getEncryptionType | ( | ) |
Get meeting encryption type.
int us.zoom.sdk.InMeetingEncryptionController.getUnencryptedExceptionCount | ( | ) |
Returns unencrypted exception count.
String us.zoom.sdk.InMeetingEncryptionController.getUnencryptedExceptionInfo | ( | ) |
Returns unencrypted exception details.
boolean us.zoom.sdk.InMeetingEncryptionController.isUnencryptedExceptionDataValid | ( | ) |
Determine whether unencrypted exception data such as getUnencryptedExceptionCount()
and getUnencryptedExceptionInfo()
is valid This method can only be called when the encryption type is EncryptionType.Enhanced
.
void us.zoom.sdk.InMeetingEncryptionController.removeListener | ( | InMeetingEncryptionControllerListener | listener | ) |
Unregister the listener.
listener | The listener instance |