package mixconfig.tools.dataretention.smartcard.commands; import mixconfig.tools.dataretention.smartcard.ApduConstants; public class SelectAnonCardAppletCommand extends AbstractCommand { public SelectAnonCardAppletCommand() { apduClass = (byte) 0x00; instruction = (byte) 0xA4; p1 = (byte) 0x04; p2 = (byte) 0x00; arguments = ApduConstants.AID_ANON_APPLET; } }