Table of contents

DBRDLSLicenseVerificationListener

DBRDLSLicenseVerificationListener is the interface to handle license verification callback when using initLicenseFromDLS.

Note:

  • Interface DBRDLSLicenseVerificationListener and initLicenseFromDLS are deprecated in 9.0 version.
  • Please use DBRLicenseVerificationListener and initLicense to initialize and verify the license in 9.x versions.
interface com.dynamsoft.dbr.DBRDLSLicenseVerificationListener
Method Description
DLSLicenseVerificationCallback The callback of license server.

DLSLicenseVerificationCallback

void DLSLicenseVerificationCallback(boolean isSuccess, Exception error);

Parameters

isSuccess: Whether the license verification was successful.
error: The error message from license server.

Code Snippet

DBRDLSLicenseVerificationListener dbrDLSListener = new DBRDLSLicenseVerificationListener() {
    @Override
    public void DLSLicenseVerificationCallback(boolean b, Exception e) {
        // Add your code
    }
};

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: