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 45EFBD090 for ; Tue, 5 Mar 2013 20:43:32 +0000 (UTC) Received: (qmail 34475 invoked by uid 500); 5 Mar 2013 20:43:32 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 34424 invoked by uid 500); 5 Mar 2013 20:43: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 34416 invoked by uid 99); 5 Mar 2013 20:43:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Mar 2013 20:43:32 +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; Tue, 05 Mar 2013 20:43:31 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E58BB23889DE; Tue, 5 Mar 2013 20:43:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1452991 - /cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/Claim.java Date: Tue, 05 Mar 2013 20:43:11 -0000 To: commits@cxf.apache.org From: owulff@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130305204311.E58BB23889DE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: owulff Date: Tue Mar 5 20:43:11 2013 New Revision: 1452991 URL: http://svn.apache.org/r1452991 Log: Methods deprecated Modified: cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/Claim.java Modified: cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/Claim.java URL: http://svn.apache.org/viewvc/cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/Claim.java?rev=1452991&r1=1452990&r2=1452991&view=diff ============================================================================== --- cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/Claim.java (original) +++ cxf/fediz/trunk/plugins/core/src/main/java/org/apache/cxf/fediz/core/Claim.java Tue Mar 5 20:43:11 2013 @@ -42,10 +42,12 @@ public class Claim implements Serializab private URI namespace = ClaimTypes.URI_BASE; // To deprecate as ClaimType is fully qualified + @Deprecated public URI getNamespace() { return namespace; } + @Deprecated public void setNamespace(URI namespace) { this.namespace = namespace; }