Uploaded image for project: 'CXF'
  1. CXF
  2. CXF-4280

case insensitive MetadataMap keyset

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.5.3
    • 2.3.11, 2.4.8, 2.5.4, 2.6.1
    • JAX-RS
    • None
    • Unknown

    Description

      while working on TCK for openejb/tomee we needed to do it:

      public class PatchedMetadataMap extends MetadataMap<String, String> {
      public PatchedMetadataMap(Map<String, List<String>> store, boolean ro, boolean ci)

      { super(store, ro, ci); }

      public Set<String> keySet()

      { Set<String> set = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER); set.addAll(super.keySet()); return set; }

      }

      any way to merge it in cxf?

      Attachments

        Activity

          People

            sergey_beryozkin Sergey Beryozkin
            romain.manni-bucau Romain Manni-Bucau
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: