Just noticed that, having mounted a page as:

   mount(new MixedParamUrlCodingStrategy("/add", Add.class, new String[]{"c"}));

then calling it via http://.../add/100?M=123456, in the constructor I
get the following:

pageParameters = [EMAIL PROTECTED] size = 2
  [0] = [EMAIL PROTECTED] c -> 100
    key: java.lang.String = [EMAIL PROTECTED]"c"
    value: java.lang.String = [EMAIL PROTECTED]"100"
  [1] = [EMAIL PROTECTED] M -> [Ljava.lang.String;@1921360
    key: java.lang.String = [EMAIL PROTECTED]"M"
    value: java.lang.String[] = [EMAIL PROTECTED]
      [0] = [EMAIL PROTECTED]"123456"

i.e. the first PageParameters value is a string, while the second is
an array of strings - Bug or Feature?

/Gwyn

Reply via email to