package mixconfig.tools.dataretention.smartcard.commands; import mixconfig.tools.dataretention.smartcard.ApduConstants; public class IsAllowedToModifyTimeserversCommand extends AbstractCommand { public IsAllowedToModifyTimeserversCommand() { instruction = ApduConstants.INSTRUCTION_IS_ALLOWED_TO_MODIFY_OPERATORS; expectedReturnDataLength = 0x01; } public boolean isAllowed() { return (rawResponse[0] == ApduConstants.TRUE); } }