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 2015/10/28 12:02:12 UTC

svn commit: r1710991 - /sling/trunk/bundles/api/src/main/java/org/apache/sling/api/resource/observation/ResourceChange.java

Author: cziegeler
Date: Wed Oct 28 11:02:12 2015
New Revision: 1710991

URL: http://svn.apache.org/viewvc?rev=1710991&view=rev
Log:
SLING-5162 : Support for the new observation API in the resource resolver

Modified:
    sling/trunk/bundles/api/src/main/java/org/apache/sling/api/resource/observation/ResourceChange.java

Modified: sling/trunk/bundles/api/src/main/java/org/apache/sling/api/resource/observation/ResourceChange.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/api/src/main/java/org/apache/sling/api/resource/observation/ResourceChange.java?rev=1710991&r1=1710990&r2=1710991&view=diff
==============================================================================
--- sling/trunk/bundles/api/src/main/java/org/apache/sling/api/resource/observation/ResourceChange.java (original)
+++ sling/trunk/bundles/api/src/main/java/org/apache/sling/api/resource/observation/ResourceChange.java Wed Oct 28 11:02:12 2015
@@ -78,8 +78,13 @@ public class ResourceChange {
 
     /**
      * Create a new change object
+     *
      * @param changeType The change type
      * @param path The resource path
+     * @param isExternal {code true} if the change happened on another node
+     * @param addedPropertyName set of added property names, if provided must be immutable
+     * @param changedPropertyNames set of added property names, if provided must be immutable
+     * @param removedPropertyNames set of added property names, if provided must be immutable
      */
     public ResourceChange(final @Nonnull ChangeType changeType,
             final @Nonnull String path,