Package com.jalios.jstore
Interface StoreListener
-
- All Known Implementing Classes:
AbstractFileIndexListener
,AbstractLinkIndexListener
,AccessControlListListener
,AccessControlManager
,AudienceRights
,AuthenticationCookieMemberListener
,BasicDBListenerStoreListener
,BasicStoreListener
,CacheManager
,CategoryListener
,CategorySearchEngineListener
,DataListener
,DescriptiveURLs.DescriptiveURLsListener
,FileDocumentListener
,FileDocumentVersionListener
,FileProcessorDBListenerStoreListener
,GroupListener
,ImportDataListener
,JPortalListener
,JSyncDataListener
,LimitControllerListener
,MemberListener
,MemberSearchEngineListener
,PublicationListener
,PublicationSearchEngineListener
,SyncManager
,WeakLinkManager
,WFPublicationListener
,WKRoleListener
,WorkspaceListener
,WSTypeEntryListener
public interface StoreListener
A Store event gets fired whenever a storable is created, updated or deleted. You can register a StoreListener so as to be notified of any store updates.- Version:
- $Revision: 107554 $
- Author:
- Olivier Dedieu <olivier.dedieu@jalios.com>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
REVISION
-
Method Summary
All Methods Instance Methods Abstract 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<java.lang.String,java.lang.String> attributes, boolean firstTime)
This method gets called when before a storable will be updated.
-
-
-
Field Detail
-
REVISION
static final java.lang.String REVISION
- See Also:
- Constant Field Values
-
-
Method Detail
-
handleCreate
void handleCreate(Storable storable, boolean firstTime)
This method gets called when a storable is created.- Parameters:
storable
- the storablefirstTime
- true if it is the first time this operation is processed
-
handlePrepareUpdate
void handlePrepareUpdate(Storable storable, java.util.Map<java.lang.String,java.lang.String> attributes, boolean firstTime)
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.- Parameters:
storable
- the storableattributes
- the attributes to updatefirstTime
- true if it is the first time this operation is processed
-
handleCommitUpdate
void handleCommitUpdate(Storable storable, Storable oldStorable, boolean firstTime)
This method gets called when after a storable has been updated.- 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
-
handleDelete
void handleDelete(Storable storable, boolean firstTime)
This method gets called when a storable is deleted.- Parameters:
storable
- the storablefirstTime
- true if it is the first time this operation is processed
-
-