Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
class AOneAppSecurityCbk() : AOneAppSecurityCbkIAOneAppSecurityCbk {
    
    override fun getApplicationInfo(): String {
        Log.v("${this::class.java.simpleName}", "getApplicationInfo")
        return "{}"
    }

    override fun notifyError(error: Int) {
        Log.v("${this::class.java.simpleName}", "notifyError - error: " + error)
    }

    override fun notifyException(e: Exception) {
        Log.v("${this::class.java.simpleName}", "notifyException - exception: " + e)
    }

    override fun notifyExit() {
        Log.v("${this::class.java.simpleName}", "notifyExit")
    }

    override fun notifyRemediation(data: String?) {
        Log.v("${this::class.java.simpleName}", "notifyRemediation")
    }

    override fun pinEnterResult(params: Any?, status: IAOneAppSecurityCbk.PinStatus, 
                                pin: ByteArray?, error: Int) {
        Log.v("${this::class.java.simpleName}", "pinEnterResult - params: ${params},
              status: ${status}, error: ${error}")
    }

    override fun syncExecuteResult(params: Any?, error: Int) {
        Log.v("${this::class.java.simpleName}", "syncExecuteResult - error: ${error},
              params: ${params}")
    }
}

...