Class AbstractStoreEventListener<T>

java.lang.Object
org.springframework.content.commons.repository.events.AbstractStoreEventListener<T>
All Implemented Interfaces:
EventListener, org.springframework.context.ApplicationListener<StoreEvent>

@Deprecated public abstract class AbstractStoreEventListener<T> extends Object implements org.springframework.context.ApplicationListener<StoreEvent>
Deprecated.
This class is deprecated. Use AbstractStoreEventListener instead.
  • Constructor Details

    • AbstractStoreEventListener

      public AbstractStoreEventListener()
      Deprecated.
  • Method Details

    • onApplicationEvent

      public final void onApplicationEvent(StoreEvent event)
      Deprecated.
      Specified by:
      onApplicationEvent in interface org.springframework.context.ApplicationListener<T>
    • onBeforeGetResource

      protected void onBeforeGetResource(BeforeGetResourceEvent event)
      Deprecated.
      Override this method if you are interested in beforeGetResource events.
      Parameters:
      event - The event
    • onBeforeGetResource

      protected void onBeforeGetResource(T entity)
      Deprecated.
      Override this method if you are interested in beforeGetResource events.
      Parameters:
      entity - The content entity being fetched.
    • onAfterGetResource

      protected void onAfterGetResource(AfterGetResourceEvent event)
      Deprecated.
      Override this method if you are interested in afterGetResource events.
      Parameters:
      event - The event
    • onAfterGetResource

      protected void onAfterGetResource(T entity)
      Deprecated.
      Override this method if you are interested in afterGetResource events.
      Parameters:
      entity - The content entity being fetched.
    • onBeforeAssociate

      protected void onBeforeAssociate(BeforeAssociateEvent event)
      Deprecated.
      Override this method if you are interested in beforeAssociate events.
      Parameters:
      event - The event
    • onBeforeAssociate

      protected void onBeforeAssociate(T entity)
      Deprecated.
      Override this method if you are interested in beforeAssociate events.
      Parameters:
      entity - The content entity being fetched.
    • onAfterAssociate

      protected void onAfterAssociate(AfterAssociateEvent event)
      Deprecated.
      Override this method if you are interested in afterAssociate events.
      Parameters:
      event - The event
    • onAfterAssociate

      protected void onAfterAssociate(T entity)
      Deprecated.
      Override this method if you are interested in afterAssociate events.
      Parameters:
      entity - The content entity being fetched.
    • onBeforeUnassociate

      protected void onBeforeUnassociate(BeforeUnassociateEvent event)
      Deprecated.
      Override this method if you are interested in beforeUnassociate events.
      Parameters:
      event - The event
    • onBeforeUnassociate

      protected void onBeforeUnassociate(T entity)
      Deprecated.
      Override this method if you are interested in beforeUnassociate events.
      Parameters:
      entity - The content entity being fetched.
    • onAfterUnassociate

      protected void onAfterUnassociate(AfterUnassociateEvent event)
      Deprecated.
      Override this method if you are interested in afterUnassociate events.
      Parameters:
      event - The event
    • onAfterUnassociate

      protected void onAfterUnassociate(T entity)
      Deprecated.
      Override this method if you are interested in afterUnassociate events.
      Parameters:
      entity - The content entity being fetched.
    • onBeforeGetContent

      protected void onBeforeGetContent(BeforeGetContentEvent event)
      Deprecated.
      Override this method if you are interested in beforeGetContent events.
      Parameters:
      event - The event
    • onBeforeGetContent

      protected void onBeforeGetContent(T entity)
      Deprecated.
      Override this method if you are interested in beforeGetContent events.
      Parameters:
      entity - The content entity being fetched.
    • onAfterGetContent

      protected void onAfterGetContent(AfterGetContentEvent event)
      Deprecated.
      Override this method if you are interested in afterGetContent events.
      Parameters:
      event - The event
    • onAfterGetContent

      protected void onAfterGetContent(T entity)
      Deprecated.
      Override this method if you are interested in afterGetContent events.
      Parameters:
      entity - The content entity being fetched.
    • onBeforeSetContent

      protected void onBeforeSetContent(BeforeSetContentEvent entity)
      Deprecated.
      Override this method if you are interested in beforeSetContent events.
      Parameters:
      entity - The content event
    • onBeforeSetContent

      protected void onBeforeSetContent(T entity)
      Deprecated.
      Override this method if you are interested in beforeSetContent events.
      Parameters:
      entity - The content entity being updated.
    • onAfterSetContent

      protected void onAfterSetContent(AfterSetContentEvent event)
      Deprecated.
      Override this method if you are interested in afterSetContent events.
      Parameters:
      event - The content event
    • onAfterSetContent

      protected void onAfterSetContent(T entity)
      Deprecated.
      Override this method if you are interested in afterSetContent events.
      Parameters:
      entity - The content entity being updated.
    • onBeforeUnsetContent

      protected void onBeforeUnsetContent(BeforeUnsetContentEvent event)
      Deprecated.
      Override this method if you are interested in beforeUnsetContent events.
      Parameters:
      event - The content event
    • onBeforeUnsetContent

      protected void onBeforeUnsetContent(T entity)
      Deprecated.
      Override this method if you are interested in beforeUnsetContent events.
      Parameters:
      entity - The content entity being removed.
    • onAfterUnsetContent

      protected void onAfterUnsetContent(AfterUnsetContentEvent event)
      Deprecated.
      Override this method if you are interested in afterUnsetContent events.
      Parameters:
      event - The content event
    • onAfterUnsetContent

      protected void onAfterUnsetContent(T entity)
      Deprecated.
      Override this method if you are interested in afterUnsetContent events.
      Parameters:
      entity - The content entity being removed.