Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2A44517C74 for ; Fri, 23 Jan 2015 16:25:32 +0000 (UTC) Received: (qmail 70440 invoked by uid 500); 23 Jan 2015 16:25:32 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 70374 invoked by uid 500); 23 Jan 2015 16:25:32 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 70365 invoked by uid 99); 23 Jan 2015 16:25:32 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jan 2015 16:25:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6763DE0393; Fri, 23 Jan 2015 16:25:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergeyb@apache.org To: commits@cxf.apache.org Message-Id: <380f6052cb394808a58911c3c4fbc99f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: Minor update to the subresource proxy creation code Date: Fri, 23 Jan 2015 16:25:31 +0000 (UTC) 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 Authored: Fri Jan 23 16:24:33 2015 +0000 Committer: Sergey Beryozkin 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 createProxy(Class 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)); }