Romain Manni-Bucau created CXF-4280:
---------------------------------------
Summary: 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
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