2223242526272829
} @Override public void update(Map<String, Object> parameters, HttpServletResponse response) throws IOException { String hostName = (String) parameters.get("dynDnsHostName"); new HostScalar().persist(hostName); response.sendRedirect("../edit/index.html?updated=true"); }
42434445464748
} private void populate(Map<String, Object> map) { map.put("niceify", new NiceifyName()); map.put("encode", new Encoder()); map.put("host", new HostScalar().value()); }