[
https://issues.apache.org/jira/browse/CXF-4280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Sergey Beryozkin resolved CXF-4280.
-----------------------------------
Resolution: Fixed
Fix Version/s: 2.3.11
2.4.8
2.5.4
2.6.1
Assignee: Sergey Beryozkin
> case insensitive MetadataMap keyset
> -----------------------------------
>
> Key: CXF-4280
> URL: https://issues.apache.org/jira/browse/CXF-4280
> Project: CXF
> Issue Type: Bug
> Components: JAX-RS
> Affects Versions: 2.5.3
> Reporter: Romain Manni-Bucau
> Assignee: Sergey Beryozkin
> Fix For: 2.6.1, 2.5.4, 2.4.8, 2.3.11
>
>
> 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?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira