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

Sergey Beryozkin edited comment on CXF-5038 at 5/24/13 2:05 PM:
----------------------------------------------------------------

Also, check CXF Specific Extension, where you can say "QueryParam("") 
ComplexParam" - all the query parameters will be injected into ComplexParam 
bean; this should also work on the proxy client end, in case you use CXF older 
than CXF 2.7.x
                
      was (Author: sergey_beryozkin):
    Also, check CXF Specific Extension, where you can say "QueryParam("") 
ComplexParam" - all the query parameters will be injected into ComplexParam bean
                  
> More flexible QueryParams
> -------------------------
>
>                 Key: CXF-5038
>                 URL: https://issues.apache.org/jira/browse/CXF-5038
>             Project: CXF
>          Issue Type: New Feature
>          Components: JAX-RS
>            Reporter: Vincent Tremblay
>            Assignee: Sergey Beryozkin
>
> It would be useful to be able to handle how a beans are traduced into 
> QueryParams.
> I can see something like a ParametersWriter<T> and a ParametersReader<T> to 
> achieve this goal.
> Ex.
> Let's say that you have the following method:
> @GET
> @Path("/resource")
> public void doSomething(@QueryParam ComplexObject);
> You could declare a ParametersWriter that can handle the creation of the 
> parameters:
> public class ParametersWriter<ComplexObject> {
>     
>     writeParameters(ComplexObject object, Map<String, List<Object>> params) {
>          params.put("filter", Arrays.asList(...,...));
>          params.put("query", Arrays.asList(...));
>     }
> }
> Then, on the server side, you could have a ParametersReader<ComplexObject> 
> that can rebuild the object from the request's parameters.

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