Class AttachmentWebdavListener
- java.lang.Object
-
- org.silverpeas.core.notification.system.CDIResourceEventListener<AttachmentEvent>
-
- org.silverpeas.core.contribution.attachment.webdav.AttachmentWebdavListener
-
- All Implemented Interfaces:
ResourceEventListener<AttachmentEvent>
@Bean public class AttachmentWebdavListener extends CDIResourceEventListener<AttachmentEvent>
Handles the Web Browser Edition releasing on attachment manipulations.- Author:
- silveryocha
-
-
Field Summary
-
Fields inherited from class org.silverpeas.core.notification.system.CDIResourceEventListener
logger
-
-
Constructor Summary
Constructors Constructor Description AttachmentWebdavListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onDeletion(AttachmentEvent event)
An event on the deletion of a resource has be listened.void
onRemoving(AttachmentEvent event)
An event on the removing of a resource has be listened.void
onUnlock(AttachmentEvent event)
An event on the unlock of a resource has be listened.void
onUpdate(AttachmentEvent event)
An event on the update of a resource has be listened.-
Methods inherited from class org.silverpeas.core.notification.system.CDIResourceEventListener
onEvent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.silverpeas.core.notification.system.ResourceEventListener
dispatchEvent, isEnabled, onCreation, onMove, onRecovery
-
-
-
-
Method Detail
-
onUpdate
public void onUpdate(AttachmentEvent event)
Description copied from interface:ResourceEventListener
An event on the update of a resource has be listened. By default, this method does nothing.- Parameters:
event
- the event on the update of a resource.
-
onUnlock
public void onUnlock(AttachmentEvent event)
Description copied from interface:ResourceEventListener
An event on the unlock of a resource has be listened. By default, this method does nothing.- Parameters:
event
- the event on the unlock of a resource.
-
onRemoving
public void onRemoving(AttachmentEvent event)
Description copied from interface:ResourceEventListener
An event on the removing of a resource has be listened. A removed resource is again existent and it is recoverable; it is usually put in a trash. By default, this method does nothing.- Parameters:
event
- the event on the removing of a resource.
-
onDeletion
public void onDeletion(AttachmentEvent event)
Description copied from interface:ResourceEventListener
An event on the deletion of a resource has be listened. A deleted resource is nonexistent and nonrecoverable. By default, this method does nothing.- Parameters:
event
- the event on the deletion of a resource.
-
-