• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.verifiedboot.globalstate.callback;
2 
3 import javacard.framework.Shareable;
4 
5 public interface CallbackInterface extends Shareable {
6     /**
7      * Called when a triggerDataClear() occurs on the GlobalState applet.
8      * When the applet is complete, it should call reportDataCleared()
9      * on the GlobalStateInterface.
10      */
clearData()11     void clearData();
12 };
13