Adam Lider created CXF-5198:
-------------------------------

             Summary: FiqlParser fails to parse an expression with camel case 
when SearchBean is used
                 Key: CXF-5198
                 URL: https://issues.apache.org/jira/browse/CXF-5198
             Project: CXF
          Issue Type: Bug
            Reporter: Adam Lider


{code:java}
public class FiqlParserTest {

    private FiqlParser<SearchBean> parser = new 
FiqlParser<SearchBean>(SearchBean.class);

    @Test
    public void lowerCase() throws SearchParseException {
        parser.parse("thename==king");
    }

    @Test
    public void camelCase() throws SearchParseException {
        parser.parse("theName==king");
    }
}
{code}

The problem was introduced in revision: 1468852 and exists in all versions 
created later on.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to