001package com.aispeech.dui.dds; 002 003public interface DDSAuthListener { 004 /** 005 * 授权成功回调方法 006 */ 007 void onAuthSuccess(); 008 009 /** 010 * 授权失败回调方法 011 * 012 * @param errId the errId. 013 * @param error the error message. 014 */ 015 void onAuthFailed(String errId, String error); 016}