Author: vmassol
Date: 2008-02-12 12:07:41 +0100 (Tue, 12 Feb 2008)
New Revision: 7537

Added:
   
xwiki-platform/core/trunk/xwiki-observation/src/main/java/org/xwiki/observation/event/DocumentUpdateEvent.java
Log:
WIKI-1522: Rewrite the notification mechanism

* Added new Document update event

Merged from 1.2 branch (rev 7536)

Copied: 
xwiki-platform/core/trunk/xwiki-observation/src/main/java/org/xwiki/observation/event/DocumentUpdateEvent.java
 (from rev 7536, 
xwiki-platform/core/branches/xwiki-core-1.2/xwiki-observation/src/main/java/org/xwiki/observation/event/DocumentUpdateEvent.java)
===================================================================
--- 
xwiki-platform/core/trunk/xwiki-observation/src/main/java/org/xwiki/observation/event/DocumentUpdateEvent.java
                              (rev 0)
+++ 
xwiki-platform/core/trunk/xwiki-observation/src/main/java/org/xwiki/observation/event/DocumentUpdateEvent.java
      2008-02-12 11:07:41 UTC (rev 7537)
@@ -0,0 +1,36 @@
+/*
+ * See the NOTICE file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ *
+ */
+package org.xwiki.observation.event;
+
+import org.xwiki.observation.event.filter.EventFilter;
+
+public class DocumentUpdateEvent extends AbstractDocumentEvent
+{
+    public DocumentUpdateEvent(EventFilter eventFilter)
+    {
+        super(eventFilter);
+    }
+
+    public DocumentUpdateEvent(String documentName)
+    {
+        super(documentName);
+    }
+}
\ No newline at end of file


Property changes on: 
xwiki-platform/core/trunk/xwiki-observation/src/main/java/org/xwiki/observation/event/DocumentUpdateEvent.java
___________________________________________________________________
Name: svn:keywords
   + "Author Date Id Revision"
Name: svn:eol-style
   + native

_______________________________________________
notifications mailing list
[email protected]
http://lists.xwiki.org/mailman/listinfo/notifications

Reply via email to