blob: e5b1f94604000ac4c2d38b903e14bd1ee5cdb92c [file] [log] [blame]
package com.android.verifiedboot.globalstate.callback;
import javacard.framework.Shareable;
public interface CallbackInterface extends Shareable {
/**
* Called when a triggerDataClear() occurs on the GlobalState applet.
* When the applet is complete, it should call reportDataCleared()
* on the GlobalStateInterface.
*/
void clearData();
};