All Implemented Interfaces:
Serializable, Cloneable

public class LinkedCacheKey extends CacheKey

Purpose: Provides the capability to insert CacheKeys into a Linked List.

Responsibilities:

  • Provide same capabilities as superclass.
  • Maintain within linked list.
Since:
TOPLink/Java 1.0
See Also:
  • Field Details

    • previous

      protected LinkedCacheKey previous
      Handle on previous element in cache
    • next

      protected LinkedCacheKey next
      Handle on next element in cache
  • Constructor Details

    • LinkedCacheKey

      public LinkedCacheKey(Object primaryKey, Object object, Object writeLockValue, long readTime, boolean isIsolated)
      Initialize the newly allocated instance of this class.
      Parameters:
      object - is the domain object.
      writeLockValue - is the write lock value number.
  • Method Details