Package com.jalios.jcms
Class DataListener
- java.lang.Object
-
- com.jalios.jcms.BasicStoreListener
-
- com.jalios.jcms.DataListener
-
- All Implemented Interfaces:
PluginComponent
,StoreListener
public class DataListener extends BasicStoreListener
This class listens to mutations ofData
objects.- Author:
- Olivier Dedieu
- See Also:
Data
-
-
Constructor Summary
Constructors Constructor Description DataListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCreateCount()
Return the count of create operations recorded in the store.int
getCreateCount(java.lang.Class<? extends Storable> clazz)
int
getDeleteCount()
Return the count of delete operations recorded in the store.int
getDeleteCount(java.lang.Class<? extends Storable> clazz)
int
getOpCount()
Return the count of create operations recorded in the store.int
getOpCount(java.lang.Class<? extends Storable> clazz)
int
getUpdateCount()
Return the count of update operations recorded in the store.int
getUpdateCount(java.lang.Class<? extends Storable> clazz)
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.-
Methods inherited from class com.jalios.jcms.BasicStoreListener
handlePrepareUpdate, init
-
-
-
-
Method Detail
-
getOpCount
public int getOpCount()
Return the count of create operations recorded in the store.- Returns:
- the count of create operations.
-
getCreateCount
public int getCreateCount()
Return the count of create operations recorded in the store.- Returns:
- the count of create operations.
-
getUpdateCount
public int getUpdateCount()
Return the count of update operations recorded in the store.- Returns:
- the count of update operations.
-
getDeleteCount
public int getDeleteCount()
Return the count of delete operations recorded in the store.- Returns:
- the count of delete operations.
-
getOpCount
public int getOpCount(java.lang.Class<? extends Storable> clazz)
-
getCreateCount
public int getCreateCount(java.lang.Class<? extends Storable> clazz)
-
getUpdateCount
public int getUpdateCount(java.lang.Class<? extends Storable> clazz)
-
getDeleteCount
public int getDeleteCount(java.lang.Class<? extends Storable> clazz)
-
handleCreate
public void handleCreate(Storable storable, boolean firstTime)
Description copied from interface:StoreListener
This method gets called when a storable is created.- Specified by:
handleCreate
in interfaceStoreListener
- Overrides:
handleCreate
in classBasicStoreListener
- Parameters:
storable
- the storablefirstTime
- true if it is the first time this operation is processed- See Also:
StoreListener.handleCreate(Storable, boolean)
-
handleCommitUpdate
public void handleCommitUpdate(Storable storable, Storable oldStorable, boolean firstTime)
Description copied from interface:StoreListener
This method gets called when after a storable has been updated.- Specified by:
handleCommitUpdate
in interfaceStoreListener
- Overrides:
handleCommitUpdate
in classBasicStoreListener
- Parameters:
storable
- 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 processed- See Also:
StoreListener.handleCommitUpdate(Storable, Storable, boolean)
-
handleDelete
public void handleDelete(Storable storable, boolean firstTime)
Description copied from interface:StoreListener
This method gets called when a storable is deleted.- Specified by:
handleDelete
in interfaceStoreListener
- Overrides:
handleDelete
in classBasicStoreListener
- Parameters:
storable
- the storablefirstTime
- true if it is the first time this operation is processed- See Also:
StoreListener.handleDelete(Storable, boolean)
-
-