* configpeer.jsp: New

This commit is contained in:
zzz
2008-07-16 15:05:07 +00:00
parent 40f0cb65a1
commit 11d267bc9a
6 changed files with 211 additions and 8 deletions

View File

@ -0,0 +1,24 @@
package net.i2p.router.web;
import net.i2p.data.DataHelper;
import net.i2p.router.RouterContext;
public class ConfigPeerHelper {
private RouterContext _context;
/**
* Configure this bean to query a particular router context
*
* @param contextId begging few characters of the routerHash, or null to pick
* the first one we come across.
*/
public void setContextId(String contextId) {
try {
_context = ContextHelper.getContext(contextId);
} catch (Throwable t) {
t.printStackTrace();
}
}
public ConfigPeerHelper() {}
}