Class CacheDescriptor

java.lang.Object
org.nuxeo.ecm.core.cache.CacheDescriptor
All Implemented Interfaces:
Descriptor

public class CacheDescriptor extends Object implements Descriptor
Descriptor of cache contrib
Since:
6.0
  • Field Details

  • Constructor Details

    • CacheDescriptor

      public CacheDescriptor()
  • Method Details

    • getId

      public String getId()
      Description copied from interface: Descriptor
      The descriptor id, descriptors with same id are merged.

      To forbid multiple descriptors use UNIQUE_DESCRIPTOR_ID.

      To forbid merge use a unique value, non-overriden toString() for exemple.

      Specified by:
      getId in interface Descriptor
    • getTTL

      public long getTTL()
    • setTTL

      public void setTTL(Long value)
    • merge

      public Descriptor merge(Descriptor o)
      Description copied from interface: Descriptor
      Returns a descriptor representing other merged into this

      Default implementation returns other.

      Specified by:
      merge in interface Descriptor
      Returns:
      the merged descriptor
    • doesRemove

      public boolean doesRemove()
      Description copied from interface: Descriptor
      During merge if a descriptor whose doesRemove() returns true is encountered, the merge chain is reset and started again on next descriptor.

      If the last descriptor of same id doesRemove() return true, the descriptor for this id will be null.

      Specified by:
      doesRemove in interface Descriptor