Repository: cxf Updated Branches: refs/heads/master 6ec790ce3 -> b6ccc894f
Minor update to the subresource proxy creation code Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/b6ccc894 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/b6ccc894 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/b6ccc894 Branch: refs/heads/master Commit: b6ccc894f3081d9c783f6da8184a9572667ebff5 Parents: 6ec790c Author: Sergey Beryozkin <[email protected]> Authored: Fri Jan 23 16:24:33 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Fri Jan 23 16:24:33 2015 +0000 ---------------------------------------------------------------------- .../main/java/org/apache/cxf/jaxrs/client/JAXRSClientFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/b6ccc894/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/JAXRSClientFactory.java ---------------------------------------------------------------------- diff --git a/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/JAXRSClientFactory.java b/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/JAXRSClientFactory.java index b10de68..167ae73 100644 --- a/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/JAXRSClientFactory.java +++ b/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/JAXRSClientFactory.java @@ -372,7 +372,7 @@ public final class JAXRSClientFactory { static <T> T createProxy(Class<T> cls, ClassLoader loader, InvocationHandler handler) { return cls.cast(ProxyHelper.getProxy(loader == null ? cls.getClassLoader() : loader, - new Class[]{Client.class, cls}, + new Class[]{Client.class, InvocationHandlerAware.class, cls}, handler)); }
