@Override
protected Object doExecute() throws Exception {
ServerConnection connection = connect();
AbstractCommand command = new CommandUnlockKeystore();
BaseCommandArgs args = new BaseCommandArgs(keystoreNames.toArray(new String[keystoreNames.size()]));
command.execute(this, connection, args);
return null;
}