use of iso.std.iso_iec._24727.tech.schema.CardApplicationDisconnect in project open-ecard by ecsec.
the class TCTokenHandler method disconnectHandle.
public static void disconnectHandle(Dispatcher dispatcher, ConnectionHandleType connectionHandle) {
// disconnect card after authentication
CardApplicationDisconnect appDis = new CardApplicationDisconnect();
appDis.setConnectionHandle(connectionHandle);
appDis.setAction(ActionType.RESET);
dispatcher.safeDeliver(appDis);
}
Aggregations