protected NutchInstance load()

in src/main/java/org/apache/nutch/webui/pages/AbstractBasePage.java [194:200]


    protected NutchInstance load() {
      Long instanceId = (Long) getSession().getAttribute("instanceId");
      if (instanceId == null) {
        return getFirstInstance();
      }
      return instanceService.getInstance(instanceId);
    }