I am trying to add and fetch with a key as String and value as List in Wicket PageParameters.
While am fetching the value with key, I got classcastException:String cant be converted into list.
I am using something like this:
List<Example> list = (List<Example>)params.get("ExampleList");
Any help is appreciated.