I am trying to add and extract with the key as String and the value as List<object> in Wicket PageParameters .
While I am retrieving the value using the key, I got a 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.
source share