Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A886010C2F for ; Thu, 3 Oct 2013 05:42:31 +0000 (UTC) Received: (qmail 45787 invoked by uid 500); 3 Oct 2013 05:41:49 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 45691 invoked by uid 500); 3 Oct 2013 05:41:28 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 45661 invoked by uid 99); 3 Oct 2013 05:41:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Oct 2013 05:41:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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, 03 Oct 2013 05:41:20 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 173E623888E2 for ; Thu, 3 Oct 2013 05:41:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1528720 - /tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java Date: Thu, 03 Oct 2013 05:41:00 -0000 To: dev@tomcat.apache.org From: kfujino@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131003054100.173E623888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kfujino Date: Thu Oct 3 05:40:59 2013 New Revision: 1528720 URL: http://svn.apache.org/r1528720 Log: Deprecate unused expireSessionsOnShutdown attribute. Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java?rev=1528720&r1=1528719&r2=1528720&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java Thu Oct 3 05:40:59 2013 @@ -51,7 +51,11 @@ public class BackupManager extends Clust protected static long DEFAULT_REPL_TIMEOUT = 15000;//15 seconds - /** Set to true if we don't want the sessions to expire on shutdown */ + /** + * Set to true if we don't want the sessions to expire on shutdown + * @deprecated Unused - will be removed in Tomcat 8.0.x + */ + @Deprecated protected boolean mExpireSessionsOnShutdown = true; /** @@ -91,11 +95,19 @@ public class BackupManager extends Clust public void messageDataReceived(ClusterMessage msg) { } + /** + * @deprecated Unused - will be removed in Tomcat 8.0.x + */ + @Deprecated public void setExpireSessionsOnShutdown(boolean expireSessionsOnShutdown) { mExpireSessionsOnShutdown = expireSessionsOnShutdown; } + /** + * @deprecated Unused - will be removed in Tomcat 8.0.x + */ + @Deprecated public boolean getExpireSessionsOnShutdown() { return mExpireSessionsOnShutdown; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org