Can't access JSONObject entries

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      Try executing this pipeline:

      def o = readJSON text: '{"foo": "bar"}'
      
      for (entry in o) {
          echo entry.class.toString()
          echo "$entry.key -> $entry.value"
      }
      

      The output is:

      class org.apache.commons.collections.map.ListOrderedMap$ListOrderedMapEntry
      Scripts not permitted to use method org.apache.commons.collections.KeyValue getKey. Administrators can decide whether to approve or reject this signature.
      

      The reason for that is that readJSON returns a net.sf.json.JSONObject, whose entry class is org.apache.commons.collections.map.ListOrderedMap.ListOrderedMapEntry, which implements org.apache.commons.collections.KeyValue, whose members are not whitelisted.

      It would be nice if you could do at least one of these:

      1. Whitelist org.apache.commons.collections.KeyValue getKey and getValue.
      2. Make it so that the existing whitelist entries for java.util.Map.Entry getKey and getValue also apply to org.apache.commons.collections.map.ListOrderedMap.ListOrderedMapEntry, which does implement java.utils.Map.Entry as well.

            Assignee:
            Unassigned
            Reporter:
            Roman Donchenko
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: