private void selectDefaultHost(List<Host> hosts) {

    if (!serverSelection.hasSetHost()) {
      String name = hosts.get(0).getName();
      Console.info("Default host selection: " + name);
      serverSelection.setHost(name);
    }
  }
  @Override
  protected void onReset() {
    super.onReset();

    if (serverSelection.isActive()) getView().initialLoad();
  }