Details
Assignee
UnassignedUnassignedReporter
christophe blinchristophe blinOriginal estimate
Time tracking
No time logged0.17h remainingPriority
Minor
Details
Details
Assignee
Unassigned
UnassignedReporter
christophe blin
christophe blinOriginal estimate
Time tracking
No time logged0.17h remaining
Priority
Created October 5, 2007 at 5:39 PM
Updated October 5, 2007 at 5:39 PM
Today, we have to do :
Filter f = this.getSession().getEnabledFilter("myFilter");
String currentLocale = (String) ((FilterImpl)f).getParameter("currentLocale"); //here is an "horrible" cast
this.getSession().disableFilter("myFilter");
/do something in session without the filter/
f = this.getSession().enableFilter("myFilter");
f.setParameter("currentLocale", currentLocale);
f.validate();