[
https://issues.apache.org/jira/browse/CXF-7332?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15972887#comment-15972887
]
Romain Manni-Bucau commented on CXF-7332:
-----------------------------------------
sure, not working code (just lambdify previous one):
{code}
final Client client = ClientBuilder.newClient()
.register((ClientRequestFilter) ctx ->
ctx.getHeaders().put("Authorization", singletonList("....")));
{code}
Is it a CXF or JAX-RS issue: can I propose, between answer A and B, the answer
C? ie Java itself? Anyway CXF can support it and I think it would be fancy even
if not portable, wdyt?
> JAXRS Client API doesnt support lambda
> --------------------------------------
>
> Key: CXF-7332
> URL: https://issues.apache.org/jira/browse/CXF-7332
> Project: CXF
> Issue Type: Bug
> Reporter: Romain Manni-Bucau
>
> {code}
> final Client client = ClientBuilder.newClient()
> .register(new ClientRequestFilter() {
> @Override
> public void filter(final ClientRequestContext
> requestContext) throws IOException {
> requestContext.getHeaders().put("Authorization",
> singletonList("...."));
> }
> });
> {code}
> this code works but if you migrate as allowed by java 8 to filter to a lambda
> then cxf doesnt identify the type properly and bypass it
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)