use the router context's properties (which now include the config settings)

This commit is contained in:
jrandom
2004-06-13 19:47:44 +00:00
committed by zzz
parent eb30525a26
commit 1d0c03eca4

View File

@ -133,7 +133,7 @@ public class KeyManager {
super(KeyManager.this._context);
}
public void runJob() {
String keyDir = KeyManager.this._context.router().getConfigSetting(PROP_KEYDIR);
String keyDir = KeyManager.this._context.getProperty(PROP_KEYDIR);
if (keyDir == null)
keyDir = DEFAULT_KEYDIR;
File dir = new File(keyDir);