Java code to set Router Console password for dr|z3d

This commit is contained in:
sponge
2009-08-19 10:31:51 +00:00
parent ea7a9c259f
commit 8bbe7fabb3
4 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package net.i2p.router.web;
public class ConfigConsoleHelper extends HelperBase {
private String consolePassword="consolePassword";
public ConfigConsoleHelper() {}
public String getSettings() {
StringBuilder buf = new StringBuilder(4*1024);
buf.append(consolePassword);
return buf.toString();
}
}