Package com.jalios.jcms.workspace
Class WSTypeEntryListener
- java.lang.Object
-
- com.jalios.jcms.BasicStoreListener
-
- com.jalios.jcms.workspace.WSTypeEntryListener
-
- All Implemented Interfaces:
PluginComponent,StoreListener
public class WSTypeEntryListener extends BasicStoreListener
This class is a StoreListener used to set a workspace for a given WSTypeEntry.- Since:
- jcms-5.5.0
- Author:
- Jean-Philippe Encausse
-
-
Constructor Summary
Constructors Constructor Description WSTypeEntryListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhandleCommitUpdate(Storable storable, Storable oldStorable, boolean firstTime)This method gets called when after a storable has been updated.voidhandleCreate(Storable storable, boolean firstTime)This method gets called when a storable is created.voidsetWorkspaceTypeEntry(Workspace ws)-
Methods inherited from class com.jalios.jcms.BasicStoreListener
handleDelete, handlePrepareUpdate, init
-
-
-
-
Method Detail
-
handleCommitUpdate
public void handleCommitUpdate(Storable storable, Storable oldStorable, boolean firstTime)
Description copied from interface:StoreListenerThis method gets called when after a storable has been updated.- Specified by:
handleCommitUpdatein interfaceStoreListener- Overrides:
handleCommitUpdatein 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)
-
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)
-
setWorkspaceTypeEntry
public void setWorkspaceTypeEntry(Workspace ws)
-
-