Class FileDocumentVersionListener

  • All Implemented Interfaces:
    StoreListener

    public class FileDocumentVersionListener
    extends java.lang.Object
    implements StoreListener
    • 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<java.lang.String,​java.lang.String> attributes, boolean firstTime)
      This method gets called when before a storable will be updated.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FileDocumentVersionListener

        public FileDocumentVersionListener()
    • Method Detail

      • 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 interface StoreListener
        Parameters:
        storable - the storable
        firstTime - true if it is the first time this operation is processed
      • handlePrepareUpdate

        public void handlePrepareUpdate​(Storable storable,
                                        java.util.Map<java.lang.String,​java.lang.String> 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 interface StoreListener
        Parameters:
        storable - the storable
        attributes - the attributes to update
        firstTime - true if it is the first time this operation is processed
      • 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 interface StoreListener
        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

        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 interface StoreListener
        Parameters:
        storable - the storable
        firstTime - true if it is the first time this operation is processed