shuber 2005/04/20 16:05:24 CEST
Modified files: (Branch: JAHIA-4-0-BRANCH)
src/java/org/jahia/data/events
JahiaEventListenerInterface.java
Log:
- Backported content activation event from 4.5
Revision Changes Path
1.6.4.3 +9 -0
jahia/src/java/org/jahia/data/events/JahiaEventListenerInterface.java
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/src/java/org/jahia/data/events/JahiaEventListenerInterface.java.diff?r1=1.6.4.2&r2=1.6.4.3&f=h
Index: JahiaEventListenerInterface.java
===================================================================
RCS file:
/home/cvs/repository/jahia/src/java/org/jahia/data/events/Attic/JahiaEventListenerInterface.java,v
retrieving revision 1.6.4.2
retrieving revision 1.6.4.3
diff -u -r1.6.4.2 -r1.6.4.3
--- JahiaEventListenerInterface.java 20 Apr 2005 13:50:21 -0000 1.6.4.2
+++ JahiaEventListenerInterface.java 20 Apr 2005 14:05:24 -0000 1.6.4.3
@@ -63,5 +63,14 @@
public void userLoggedIn( JahiaEvent je );
public void userLoggedOut( JahiaEvent je );
+ /**
+ * Event fired after ContentObject.activate(...)
+ * The Event source object is the calling ContentObject, the event
object is
+ * the ObjectKey instance of the content object.
+ *
+ * @param theEvent ContentActivationEvent
+ * @throws JahiaException
+ */
+ public void contentActivation (ContentActivationEvent theEvent);
} // end JahiaEventListenerInterface