/**
 * 
 */
package mixconfig.tools.dataretention.smartcard.commands;

import mixconfig.tools.dataretention.smartcard.ApduConstants;

/**
 * @author christoph
 * 
 */
public class GetNeededNumberOfOperatorsCommand extends AbstractCommand {

	public GetNeededNumberOfOperatorsCommand() {
		instruction = ApduConstants.INSTRUCTION_GET_NEEDED_NUMBER_OF_OPERATORS;
		expectedReturnDataLength = 1;
	}

	public int getNeededNumber() {
		return rawResponse[0];
	}

}
