[ 
https://issues.apache.org/jira/browse/CXF-6322?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Colm O hEigeartaigh closed CXF-6322.
------------------------------------

> AbstractSearchConditionParser not working with UUID fields
> ----------------------------------------------------------
>
>                 Key: CXF-6322
>                 URL: https://issues.apache.org/jira/browse/CXF-6322
>             Project: CXF
>          Issue Type: Bug
>          Components: JAX-RS
>    Affects Versions: 3.0.4
>            Reporter: Vjacheslav Borisov
>            Assignee: Sergey Beryozkin
>            Priority: Minor
>             Fix For: 3.1.0, 3.0.5
>
>
> Using of FIQL expression like bean.uuid=91d6350e-4bf5-42e8-9828-33767c6cb384
> Where uuid is of type java.util.UUID
> leads to  java.lang.InstantiationException: java.util.UUID
> at line 194: nextObject = returnType.newInstance();
> Becouse  java.util.UUID does not have no-arg constructor.
> Istead of this InjectionUtils.isPrimitive should return true for 
> java.util.UUID, then execution path should go to if (lastTry) { branch
> and convertStringToPrimitive is working correctly with java.util.UUID
> Quick fix is to change  line 168  - add  " 
> ||returnType.equals(java.util.UUID.class): "
>                 boolean isPrimitive = !returnCollection
>                     && InjectionUtils.isPrimitive(returnType) || 
> returnType.isEnum() ||returnType.equals(java.util.UUID.class);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to