Return-Path: X-Original-To: apmail-felix-commits-archive@www.apache.org Delivered-To: apmail-felix-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 2D35CD3AB for ; Mon, 28 Jan 2013 23:11:03 +0000 (UTC) Received: (qmail 68080 invoked by uid 500); 28 Jan 2013 23:11:03 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 68060 invoked by uid 500); 28 Jan 2013 23:11:03 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 68049 invoked by uid 99); 28 Jan 2013 23:11:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Jan 2013 23:11:03 +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; Mon, 28 Jan 2013 23:11:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C71152388A39; Mon, 28 Jan 2013 23:10:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1439686 - in /felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole: AttachmentProvider.java ConfigurationPrinter.java ModeAwareConfigurationPrinter.java Date: Mon, 28 Jan 2013 23:10:42 -0000 To: commits@felix.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130128231042.C71152388A39@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cziegeler Date: Mon Jan 28 23:10:42 2013 New Revision: 1439686 URL: http://svn.apache.org/viewvc?rev=1439686&view=rev Log: FELIX-3874 : Create new status printer module Modified: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/AttachmentProvider.java felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ConfigurationPrinter.java felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ModeAwareConfigurationPrinter.java Modified: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/AttachmentProvider.java URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/AttachmentProvider.java?rev=1439686&r1=1439685&r2=1439686&view=diff ============================================================================== --- felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/AttachmentProvider.java (original) +++ felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/AttachmentProvider.java Mon Jan 28 23:10:42 2013 @@ -33,6 +33,8 @@ import java.net.URL; * as a {@link ConfigurationPrinter} but not as a * {@link AttachmentProvider} service. * @since 3.0 + * @deprecated This has been deprecated. Use the org.apache.felix.status + * API instead. */ public interface AttachmentProvider { Modified: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ConfigurationPrinter.java URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ConfigurationPrinter.java?rev=1439686&r1=1439685&r2=1439686&view=diff ============================================================================== --- felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ConfigurationPrinter.java (original) +++ felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ConfigurationPrinter.java Mon Jan 28 23:10:42 2013 @@ -32,6 +32,8 @@ import java.io.PrintWriter; * With the {@link WebConsoleConstants#CONFIG_PRINTER_MODES} property this * service can specify when it should be included. * The default mode is {@link #MODE_ALWAYS}. + * @deprecated This has been deprecated. Use the org.apache.felix.status + * API instead. */ public interface ConfigurationPrinter { Modified: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ModeAwareConfigurationPrinter.java URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ModeAwareConfigurationPrinter.java?rev=1439686&r1=1439685&r2=1439686&view=diff ============================================================================== --- felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ModeAwareConfigurationPrinter.java (original) +++ felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/ModeAwareConfigurationPrinter.java Mon Jan 28 23:10:42 2013 @@ -34,6 +34,8 @@ import java.io.PrintWriter; * as a {@link ConfigurationPrinter} but not as a * {@link ModeAwareConfigurationPrinter} service. * @since 3.0 + * @deprecated This has been deprecated. Use the org.apache.felix.status + * API instead. */ public interface ModeAwareConfigurationPrinter extends ConfigurationPrinter