/**
   * @param command
   * @return
   */
  @RequestMapping(method = RequestMethod.GET)
  public ModelAndView setupForm(@ModelAttribute("command") EditIIPImagePropertiesCommand command) {
    Map<String, Object> model = new HashMap<String, Object>(0);

    command.setServerFcgiBinPath(
        ApplicationPropertyManager.getApplicationProperty("iipimage.reverseproxy.fcgi.path"));
    command.setServerHostName(
        ApplicationPropertyManager.getApplicationProperty("iipimage.reverseproxy.host"));
    command.setServerPort(
        ApplicationPropertyManager.getApplicationProperty("iipimage.reverseproxy.port"));
    command.setServerProtocol(
        ApplicationPropertyManager.getApplicationProperty("iipimage.reverseproxy.protocol"));
    command.setServerVersion(
        ApplicationPropertyManager.getApplicationProperty("iipimage.reverseproxy.version"));

    return new ModelAndView("admin/EditIIPImageProperties", model);
  }