1 package android.app.ondeviceintelligence; 2 3 import android.os.PersistableBundle; 4 import android.app.ondeviceintelligence.TokenInfo; 5 6 /** 7 * Interface for receiving the token info of a request for a given feature. 8 * 9 * @hide 10 */ 11 oneway interface ITokenInfoCallback { 12 void onSuccess(in TokenInfo tokenInfo) = 1; onFailure(int errorCode, in String errorMessage, in PersistableBundle errorParams)13 void onFailure(int errorCode, in String errorMessage, in PersistableBundle errorParams) = 2; 14 } 15