public class FileDocumentVersionListener extends java.lang.Object implements StoreListener
REVISION| Constructor and Description |
|---|
FileDocumentVersionListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
handleCommitUpdate(Storable storable,
Storable oldStorable,
boolean firstTime)
This method gets called when after a storable has been updated.
|
void |
handleCreate(Storable storable,
boolean firstTime)
This method gets called when a storable is created.
|
void |
handleDelete(Storable storable,
boolean firstTime)
This method gets called when a storable is deleted.
|
void |
handlePrepareUpdate(Storable storable,
java.util.Map<java.lang.String,java.lang.String> attributes,
boolean firstTime)
This method gets called when before a storable will be updated.
|
public void handleCreate(Storable storable, boolean firstTime)
StoreListenerhandleCreate in interface StoreListenerstorable - the storablefirstTime - true if it is the first time this operation is processedpublic void handlePrepareUpdate(Storable storable, java.util.Map<java.lang.String,java.lang.String> attributes, boolean firstTime)
StoreListenerhandlePrepareUpdate in interface StoreListenerstorable - the storableattributes - the attributes to updatefirstTime - true if it is the first time this operation is processedpublic void handleCommitUpdate(Storable storable, Storable oldStorable, boolean firstTime)
StoreListenerhandleCommitUpdate in interface StoreListenerstorable - the storable, this instance is the object that was created
at first and that will be stored in jcms until deletion of the storable
with this ID.
You should always manipulate this object if you maintain any index.oldStorable - the previous version of the storable, it is a clone, do not use
in any index, it should only be used to access old values.firstTime - true if it is the first time this operation is processedpublic void handleDelete(Storable storable, boolean firstTime)
StoreListenerhandleDelete in interface StoreListenerstorable - the storablefirstTime - true if it is the first time this operation is processedCopyright © 2001-2017 Jalios SA. All Rights Reserved.