Package com.miracl.trust
Types
Name | Summary |
---|---|
MiraclError | Brief description MiraclError<SUCCESS, FAIL> is an error response from the MIRACLTrust SDK. It provides a value of type FAIL and an optional exception. Content data class MiraclError<SUCCESS, FAIL>(value: FAIL, exception: Exception?) : MiraclResult<SUCCESS, FAIL> |
MiraclResult | Brief description MiraclResult is a class representing the MIRACLTrust SDK responses. Content sealed class MiraclResult<SUCCESS, FAIL> |
MiraclSuccess | Brief description MiraclSuccess<SUCCESS, FAIL> is a success response from the MIRACLTrust SDK. It provides a value of type SUCCESS. Content data class MiraclSuccess<SUCCESS, FAIL>(value: SUCCESS) : MiraclResult<SUCCESS, FAIL> |
MiraclTrust | Brief description Miracl Trust is the entry point of the Miracl Trust SDK. It is configured and connects with the MIRACLTrust Platform on its initialization. Initialization is done through configure(context,configuration). After initialization, the SDK can be accessed through getInstance(). Content class MiraclTrust |