Package com.jalios.jcms.mashup
Class ImportDataListener
- java.lang.Object
-
- com.jalios.jcms.BasicStoreListener
-
- com.jalios.jcms.mashup.ImportDataListener
-
- All Implemented Interfaces:
PluginComponent,StoreListener
public class ImportDataListener extends BasicStoreListener
This StoreListener indexes imported data.- Since:
- jcms-5.7.4
- Author:
- Olivier Dedieu
-
-
Constructor Summary
Constructors Constructor Description ImportDataListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhandleCreate(Storable storable, boolean firstTime)This method gets called when a storable is created.voidhandleDelete(Storable storable, boolean firstTime)This method gets called when a storable is deleted.-
Methods inherited from class com.jalios.jcms.BasicStoreListener
handleCommitUpdate, handlePrepareUpdate, init
-
-
-
-
Method Detail
-
handleCreate
public void handleCreate(Storable storable, boolean firstTime)
Description copied from interface:StoreListenerThis method gets called when a storable is created.- Specified by:
handleCreatein interfaceStoreListener- Overrides:
handleCreatein classBasicStoreListener- Parameters:
storable- the storablefirstTime- true if it is the first time this operation is processed- See Also:
StoreListener.handleCreate(Storable, boolean)
-
handleDelete
public void handleDelete(Storable storable, boolean firstTime)
Description copied from interface:StoreListenerThis method gets called when a storable is deleted.- Specified by:
handleDeletein interfaceStoreListener- Overrides:
handleDeletein classBasicStoreListener- Parameters:
storable- the storablefirstTime- true if it is the first time this operation is processed- See Also:
StoreListener.handleDelete(Storable, boolean)
-
-