Hi !
Currently in apache cxf possible to do basic bean injection:
@POST
@Consumes("application/x-www-form-urlencoded")
public Response createProcessInstanceForm(@FormParam("")
CreateProcessInstanceRequest createprocessinstancerequest) {
}Can I write provider to realise custom form POST (application/x-www-form-urlencoded) or GET (query param) to bean injection or with intemediate step application/x-www-form-urlencoded -> xml -> bean (jaxb unmarashall) )?
