Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 33414 invoked from network); 16 Sep 2010 15:57:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 16 Sep 2010 15:57:55 -0000 Received: (qmail 85397 invoked by uid 500); 16 Sep 2010 15:57:54 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 84957 invoked by uid 500); 16 Sep 2010 15:57:51 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 84707 invoked by uid 99); 16 Sep 2010 15:57:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 15:57:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 15:57:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A73AD23889F1; Thu, 16 Sep 2010 15:57:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r997807 - /commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationStubConfigurer.java Date: Thu, 16 Sep 2010 15:57:30 -0000 To: commits@commons.apache.org From: mbenson@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100916155730.A73AD23889F1@eris.apache.org> Author: mbenson Date: Thu Sep 16 15:57:30 2010 New Revision: 997807 URL: http://svn.apache.org/viewvc?rev=997807&view=rev Log: factory method Modified: commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationStubConfigurer.java Modified: commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationStubConfigurer.java URL: http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationStubConfigurer.java?rev=997807&r1=997806&r2=997807&view=diff ============================================================================== --- commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationStubConfigurer.java (original) +++ commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationStubConfigurer.java Thu Sep 16 15:57:30 2010 @@ -53,4 +53,14 @@ public class AnnotationStubConfigurer + * @param type + * @return {@link AnnotationStubConfigurer} for type + */ + public static AnnotationStubConfigurer forType(Class type) { + return new AnnotationStubConfigurer(type); + } }