Return-Path: X-Original-To: apmail-cxf-issues-archive@www.apache.org Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E9A449A6A for ; Thu, 3 May 2012 22:21:11 +0000 (UTC) Received: (qmail 26383 invoked by uid 500); 3 May 2012 22:21:11 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 26360 invoked by uid 500); 3 May 2012 22:21:11 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 26351 invoked by uid 99); 3 May 2012 22:21:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 May 2012 22:21:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 May 2012 22:21:09 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 65BEF42E1EB for ; Thu, 3 May 2012 22:20:48 +0000 (UTC) Date: Thu, 3 May 2012 22:20:48 +0000 (UTC) From: "Sergey Beryozkin (JIRA)" To: issues@cxf.apache.org Message-ID: <419521865.24273.1336083648484.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <465078348.15062.1335909291631.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Resolved] (CXF-4280) case insensitive MetadataMap keyset MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ 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 { > public PatchedMetadataMap(Map> store, boolean ro, boolean ci) { > super(store, ro, ci); > } > public Set keySet() { > Set set = new TreeSet(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