*/
public void initialize(HttpManager manager)
throws PropRequestFilterException
{
this.manager = manager;
ObservableProperties props = manager.getProperties();
String filepath = (String)props.getString(COOKIES_FILE_P, null);
if (filepath == null) {
cookiefile = new File(defaultFileName);
} else {
cookiefile = new File(filepath);
}