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 7F1311799F for ; Wed, 8 Oct 2014 08:56:34 +0000 (UTC) Received: (qmail 43406 invoked by uid 500); 8 Oct 2014 08:56:34 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 43372 invoked by uid 500); 8 Oct 2014 08:56:34 -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 43361 invoked by uid 99); 8 Oct 2014 08:56:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Oct 2014 08:56:34 +0000 Date: Wed, 8 Oct 2014 08:56:34 +0000 (UTC) From: "Sergey Beryozkin (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CXF-5688) Problem Parsing FIQL Involving Enums 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-5688?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14163245#comment-14163245 ] Sergey Beryozkin commented on CXF-5688: --------------------------------------- Tam, I've already referred to this issue in my 1st comment. Basically, IMHO it is not a good idea for a user be aware to make sure 'a=Bar' is typed for the case-sensitive conversion to go first successfully, the user should have no idea about the 'a' property type, that it might be enum, etc. The 'natural' query language is 'a=bar', i.e, people typically do no capitalize the first character of the value when doing their queries. The don't type 'a=' either but that is something the undelying UI script can prepend to the value entered by the user in this given case. Next, IMHO 80% of enum types are actual all upper-case. Cheers, Sergey > Problem Parsing FIQL Involving Enums > ------------------------------------ > > Key: CXF-5688 > URL: https://issues.apache.org/jira/browse/CXF-5688 > Project: CXF > Issue Type: Bug > Components: JAX-RS > Reporter: Azitabh > Assignee: Sergey Beryozkin > Priority: Minor > Fix For: 3.0.0, 2.7.12 > > > FIQL parser assumes that enums would be defined in all caps. > In case Enums are not defined in all caps, InjectionUtils.convertStringToPrimitive(String value, Class cls) raises PropertyNotFoundException because it's converting the user provided enum value to caps and calling ENUM.valueOf(UPPERCASE_STR). > ethod m = cls.getMethod("valueOf", new Class[]{String.class}); > return m.invoke(null, value.toUpperCase()); > Since JAVA doesn't enforce enums to be all caps, I don't see any reason why FIQLParser should assume this. > https://github.com/apache/cxf/blob/master/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/InjectionUtils.java -- This message was sent by Atlassian JIRA (v6.3.4#6332)