You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2008/08/18 20:26:17 UTC

svn commit: r686841 - /incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/JcrModifiablePropertyMap.java

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<String> changedProperties;