|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.jalios.jcms.BasicStoreListener
public class BasicStoreListener
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. It implements the Comparable interface. This interface is required since JCMS 5.5.0 ; so that StoreListener can be invoked in a custom order. Default order is 0. When 2 BasicStoreListeners are equal they are ordered according their class name, then according their hashCode.
Field Summary | |
---|---|
static String |
REVISION
|
Constructor Summary | |
---|---|
BasicStoreListener()
|
Method Summary | |
---|---|
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,
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 |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String REVISION
Constructor Detail |
---|
public BasicStoreListener()
Method Detail |
---|
public boolean init(Plugin plugin)
PluginComponent
init
in interface PluginComponent
plugin
- the calling plugin
PluginComponent.init(Plugin)
public void handleCreate(Storable storable, boolean firstTime)
StoreListener
handleCreate
in interface StoreListener
storable
- the storablefirstTime
- true if it is the first time this operation is processedStoreListener.handleCreate(Storable, boolean)
public void handlePrepareUpdate(Storable storable, Map attributes, boolean firstTime)
StoreListener
handlePrepareUpdate
in interface StoreListener
storable
- the storableattributes
- the attributes to updatefirstTime
- true if it is the first time this operation is processedStoreListener.handlePrepareUpdate(Storable, Map, boolean)
public void handleCommitUpdate(Storable storable, Storable oldStorable, boolean firstTime)
StoreListener
handleCommitUpdate
in interface StoreListener
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 processedStoreListener.handleCommitUpdate(Storable, Storable, boolean)
public void handleDelete(Storable storable, boolean firstTime)
StoreListener
handleDelete
in interface StoreListener
storable
- the storablefirstTime
- true if it is the first time this operation is processedStoreListener.handleDelete(Storable, boolean)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |