|
From: Bas C. <ba...@ci...> - 2002-12-12 13:00:23
|
Martin Crawford wrote:
> security policy to deny this. A file would be the most logical and friendly
> solution, although how and where you put that file without using System
> Props is beyond me, I guess another configurable property. Although
Can't you work around the problem with static variables? Like:
private static boolean reloadFlag;
static {reloadFlag = true;}
protected ReloadMonitor(...) {
...
reloadFlag = false;
}
protected boolean isProxoolReloaded() {
if (reloadFlag) {
...
return true;
} else {
return false;
}
}
Please let me know what you think.
Kind regards,
Bas
--
Bas Cancrinus -> ba...@ci...
Software Architect
Cipherware Ltd. -> http://www.cipherware.com
|