Package com.jalios.jcms
Class BasicStoreListener
- java.lang.Object
-
- com.jalios.jcms.BasicStoreListener
-
- All Implemented Interfaces:
PluginComponent
,StoreListener
- Direct Known Subclasses:
AbstractFileIndexListener
,AbstractLinkIndexListener
,AccessControlListListener
,AudienceRights
,CategoryListener
,CategorySearchEngineListener
,DataListener
,DescriptiveURLs.DescriptiveURLsListener
,FileDocumentListener
,GroupListener
,ImportDataListener
,JPortalListener
,JSyncDataListener
,PublicationListener
,WeakLinkManager
,WorkspaceListener
,WSTypeEntryListener
public class BasicStoreListener extends java.lang.Object implements StoreListener, PluginComponent
This class is a neutral implementation of StoreListener. It is intended to be used to developp custom StoreListener. It avoids the sub-class to implement not used methods of StoreListener.- Since:
- jcms-5.7.3
- Author:
- Jean-Philippe Encausse
-
-
Constructor Summary
Constructors Constructor Description BasicStoreListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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 attributes, boolean firstTime)
This method gets called when before a storable will be updated.boolean
init(Plugin plugin)
Initialize the component with the given plugin configuration
-
-
-
Method Detail
-
init
public boolean init(Plugin plugin)
Description copied from interface:PluginComponent
Initialize the component with the given plugin configuration- Specified by:
init
in interfacePluginComponent
- Parameters:
plugin
- the calling plugin- Returns:
- true if the component has been correctly initialized.
- Since:
- jcms-5.7.1
- See Also:
PluginComponent.init(Plugin)
-
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
- Parameters:
storable
- the storablefirstTime
- true if it is the first time this operation is processed- See Also:
StoreListener.handleCreate(Storable, boolean)
-
handlePrepareUpdate
public void handlePrepareUpdate(Storable storable, java.util.Map attributes, boolean firstTime)
Description copied from interface:StoreListener
This method gets called when before a storable will be updated.
deprecated It should not be used anymore and will be removed from future version.- Specified by:
handlePrepareUpdate
in interfaceStoreListener
- Parameters:
storable
- the storableattributes
- the attributes to updatefirstTime
- true if it is the first time this operation is processed- See Also:
StoreListener.handlePrepareUpdate(Storable, Map, 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
- 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
- Parameters:
storable
- the storablefirstTime
- true if it is the first time this operation is processed- See Also:
StoreListener.handleDelete(Storable, boolean)
-
-