Package com.jalios.jcms.db
Class BasicDBListenerStoreListener
- java.lang.Object
-
- com.jalios.jcms.db.BasicDBListener
-
- com.jalios.jcms.db.BasicDBListenerStoreListener
-
- All Implemented Interfaces:
DBConstants,DBListener,PluginComponent,StoreListener
- Direct Known Subclasses:
AccessTokenMemberListener,AuthenticationCookieMemberListener,CacheManager,FileProcessorDBListenerStoreListener,LimitControllerListener,MemberListener,MemberSearchEngineListener,PublicationSearchEngineListener,WFPublicationListener
public class BasicDBListenerStoreListener extends BasicDBListener implements StoreListener, DBConstants
This class is a default implementation of StoreListener and DBListener.- Since:
- jcms-6.0.0
- Author:
- Olivier Dedieu
-
-
Field Summary
-
Fields inherited from interface com.jalios.jcms.db.DBConstants
ALL_CATEGORIES_SET_FIELD, ATTACH_WS_SET_FIELD, AUTH_GRP_SET_FIELD, AUTH_MBR_SET_FIELD, AUTHOR_ID_FIELD, CATEGORIES_SET_FIELD, CDATE_FIELD, CHANNEL_JCMSDB_PROP, CLASSIFICATION_LEVEL_FIELD, DBDATA_URID, EXTENDED_READ_RIGHTS, HAS_ATTACH_WS_FIELD, HAS_NO_READ_RIGHTS, HIBERNATE_MAPPING_ADATE, HIBERNATE_MAPPING_AUTHOR, HIBERNATE_MAPPING_CDATE, HIBERNATE_MAPPING_EDATE, HIBERNATE_MAPPING_HAS_ATTACH_WS, HIBERNATE_MAPPING_HASNOREADRIGHTS, HIBERNATE_MAPPING_MAININSTANCE_ID, HIBERNATE_MAPPING_MAJORVERSION, HIBERNATE_MAPPING_MDATE, HIBERNATE_MAPPING_MERGE_DATE, HIBERNATE_MAPPING_MERGE_ID, HIBERNATE_MAPPING_MINORVERSION, HIBERNATE_MAPPING_OPAUTHOR, HIBERNATE_MAPPING_PDATE, HIBERNATE_MAPPING_PSTATUS, HIBERNATE_MAPPING_READ_ACK, HIBERNATE_MAPPING_READERCOUNT, HIBERNATE_MAPPING_RESTRICTIVE_UPDATE_RIGHTS, HIBERNATE_MAPPING_TITLE, HIBERNATE_MAPPING_TRACKED, HIBERNATE_MAPPING_UDATE, HIBERNATE_MAPPING_VOTECOUNT, HIBERNATE_MAPPING_VOTESCORE, HIBERNATE_MAPPING_WORKFLOW_ID, HIBERNATE_MAPPING_WORKSPACE_ID, MAX_HIBERNATE_MAPPING_PUBLICATION, MDATE_FIELD, OPAUTHOR_ID_FIELD, PSTATUS_FIELD, ROW_ID_FIELD, SCROLL_FETCH_SIZE, WORKFLOW_ID_FIELD, WORKSPACE_ID_FIELD
-
-
Constructor Summary
Constructors Constructor Description BasicDBListenerStoreListener()
-
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.voidhandleDelete(Storable storable, boolean firstTime)This method gets called when a storable is deleted.voidhandlePrepareUpdate(Storable storable, java.util.Map attributes, boolean firstTime)This method gets called when before a storable will be updated.-
Methods inherited from class com.jalios.jcms.db.BasicDBListener
getAdateFromState, getAuthorIdFromState, getCdateFromState, getDateFromState, getEdateFromState, getMdateFromState, getPdateFromState, getPrePstatus, getPrePstatus, getPstatusFromState, hasNoChange, hasNoChange, init, onPostDelete, onPostInsert, onPostUpdate, onPreUpdate
-
-
-
-
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- Parameters:
storable- the storablefirstTime- true if it is the first time this operation is processed- Since:
- jcms-6.0.0
- See Also:
StoreListener.handleCreate(Storable, boolean)
-
handlePrepareUpdate
public void handlePrepareUpdate(Storable storable, java.util.Map attributes, boolean firstTime)
Description copied from interface:StoreListenerThis 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:
handlePrepareUpdatein interfaceStoreListener- Parameters:
storable- the storableattributes- the attributes to updatefirstTime- true if it is the first time this operation is processed- Since:
- jcms-6.0.0
- See Also:
StoreListener.handlePrepareUpdate(Storable, Map, boolean)
-
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- 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- Since:
- jcms-6.0.0
- See Also:
StoreListener.handleCommitUpdate(Storable, 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- Parameters:
storable- the storablefirstTime- true if it is the first time this operation is processed- Since:
- jcms-6.0.0
- See Also:
StoreListener.handleDelete(Storable, boolean)
-
-