Return-Path: Delivered-To: apmail-incubator-sling-commits-archive@locus.apache.org Received: (qmail 40462 invoked from network); 18 Aug 2008 18:26:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Aug 2008 18:26:39 -0000 Received: (qmail 70402 invoked by uid 500); 18 Aug 2008 18:26:38 -0000 Delivered-To: apmail-incubator-sling-commits-archive@incubator.apache.org Received: (qmail 70352 invoked by uid 500); 18 Aug 2008 18:26:37 -0000 Mailing-List: contact sling-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sling-dev@incubator.apache.org Delivered-To: mailing list sling-commits@incubator.apache.org Received: (qmail 70343 invoked by uid 99); 18 Aug 2008 18:26:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Aug 2008 11:26:37 -0700 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, 18 Aug 2008 18:25:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2D211238896B; Mon, 18 Aug 2008 11:26:18 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r686841 - /incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/JcrModifiablePropertyMap.java Date: Mon, 18 Aug 2008 18:26:17 -0000 To: sling-commits@incubator.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080818182618.2D211238896B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cziegeler Date: Mon Aug 18 11:26:16 2008 New Revision: 686841 URL: http://svn.apache.org/viewvc?rev=686841&view=rev Log: Modifiable map should of course implement the persistable map. Modified: incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/JcrModifiablePropertyMap.java Modified: incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/JcrModifiablePropertyMap.java URL: http://svn.apache.org/viewvc/incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/JcrModifiablePropertyMap.java?rev=686841&r1=686840&r2=686841&view=diff ============================================================================== --- incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/JcrModifiablePropertyMap.java (original) +++ incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/JcrModifiablePropertyMap.java Mon Aug 18 11:26:16 2008 @@ -26,13 +26,16 @@ import javax.jcr.Node; import javax.jcr.RepositoryException; +import org.apache.sling.api.resource.PersistableValueMap; import org.apache.sling.api.resource.PersistenceException; /** * This implementation of the value map allows to change * the properies and save them later on. */ -public class JcrModifiablePropertyMap extends JcrPropertyMap { +public class JcrModifiablePropertyMap + extends JcrPropertyMap + implements PersistableValueMap { /** Set of removed and changed properties. */ private Set changedProperties;