[ 
https://issues.apache.org/jira/browse/CXF-6322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14392378#comment-14392378
 ] 

Vjacheslav Borisov commented on CXF-6322:
-----------------------------------------

I have registered ParameterConverterProvider for UUID, and it is working in 
case of  query like "clientUUID==5f19fb9f-49b7-46e9-b071-ef0582350db8" (without 
subbeans)

It just not working in case where UUID is paremeted of some embedded class (eg 
bean.clientUUID==5f19fb9f-49b7-46e9-b071-ef0582350db8 or 
bean.subbean.path.to.clientUUID==5f19fb9f-49b7-46e9-b071-ef0582350db8)

Could you double check this issue?

> 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
>
> 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