Repository: cxf Updated Branches: refs/heads/3.0.x-fixes ebdbe885a -> be929cdcb
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/be929cdc Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/be929cdc Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/be929cdc Branch: refs/heads/3.0.x-fixes Commit: be929cdcbb17a9c421e7e3c724ddbf02dc558c63 Parents: ebdbe88 Author: Sergey Beryozkin <[email protected]> Authored: Fri Jan 23 16:24:33 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Fri Jan 23 16:26:25 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/be929cdc/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)); }
