Return-Path: Delivered-To: apmail-incubator-click-commits-archive@minotaur.apache.org Received: (qmail 55618 invoked from network); 8 Jun 2009 15:29:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Jun 2009 15:29:00 -0000 Received: (qmail 42302 invoked by uid 500); 8 Jun 2009 15:29:11 -0000 Delivered-To: apmail-incubator-click-commits-archive@incubator.apache.org Received: (qmail 42289 invoked by uid 500); 8 Jun 2009 15:29:11 -0000 Mailing-List: contact click-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: click-dev@incubator.apache.org Delivered-To: mailing list click-commits@incubator.apache.org Received: (qmail 42279 invoked by uid 99); 8 Jun 2009 15:29:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2009 15:29:11 +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; Mon, 08 Jun 2009 15:29:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5D6C12388877; Mon, 8 Jun 2009 15:28:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r782672 - in /incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table: SearchTablePage.java TableStyles.java Date: Mon, 08 Jun 2009 15:28:47 -0000 To: click-commits@incubator.apache.org From: sabob@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090608152847.5D6C12388877@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sabob Date: Mon Jun 8 15:28:46 2009 New Revision: 782672 URL: http://svn.apache.org/viewvc?rev=782672&view=rev Log: stateful pages should have transient services Modified: incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/SearchTablePage.java incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/TableStyles.java Modified: incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/SearchTablePage.java URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/SearchTablePage.java?rev=782672&r1=782671&r2=782672&view=diff ============================================================================== --- incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/SearchTablePage.java (original) +++ incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/SearchTablePage.java Mon Jun 8 15:28:46 2009 @@ -59,7 +59,7 @@ private DateField dateField = new DateField(Customer.DATE_JOINED_PROPERTY, "Start Date"); @Resource(name="customerService") - private CustomerService customerService; + private transient CustomerService customerService; // ----------------------------------------------------------- Constructors Modified: incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/TableStyles.java URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/TableStyles.java?rev=782672&r1=782671&r2=782672&view=diff ============================================================================== --- incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/TableStyles.java (original) +++ incubator/click/trunk/click/examples/src/org/apache/click/examples/page/table/TableStyles.java Mon Jun 8 15:28:46 2009 @@ -49,7 +49,7 @@ private Checkbox hoverCheckbox = new Checkbox("hover", "Hover Rows:"); @Resource(name="customerService") - private CustomerService customerService; + private transient CustomerService customerService; // ----------------------------------------------------------- Constructor