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

import mixconfig.tools.dataretention.smartcard.ApduConstants;

/**
 * @author christoph
 * 
 */
public class RemoveAdministatorCommand extends RemoveUserCommand {

	/**
	 * @param name
	 */
	public RemoveAdministatorCommand(String name) {
		super(name);
		instruction = ApduConstants.INSTRUCTION_REMOVE_ADMINISTRATOR;
	}

}
