/** * */ package mixconfig.tools.dataretention.smartcard.commands; import mixconfig.tools.dataretention.smartcard.ApduConstants; /** * @author christoph * */ public class SetNeededNumberOfOperatorsCommand extends AbstractCommand { public SetNeededNumberOfOperatorsCommand(byte needenNumberOfOperators) { instruction = ApduConstants.INSTRUCTION_SET_NEEDED_NUMBER_OF_OPERATORS; p1 = needenNumberOfOperators; expectedReturnDataLength = 0x00; } }