Class HibernatePortalCache

  • All Implemented Interfaces:
    org.hibernate.cache.Cache

    public class HibernatePortalCache
    extends java.lang.Object
    implements org.hibernate.cache.Cache
    Wraps the PortalCache for hibernate use.
    Since:
    4.0.11
    Version:
    $Revision: 21689 $ $Date: 2018-08-20 22:33:14 -0300 (Mon, 20 Aug 2018) $
    • Constructor Detail

      • HibernatePortalCache

        public HibernatePortalCache​(java.lang.String cacheName,
                                    java.lang.String regionName,
                                    java.lang.String databaseId)
    • Method Detail

      • read

        public java.lang.Object read​(java.lang.Object key)
                              throws org.hibernate.cache.CacheException
        Specified by:
        read in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • get

        public java.lang.Object get​(java.lang.Object key)
                             throws org.hibernate.cache.CacheException
        Specified by:
        get in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • put

        public void put​(java.lang.Object key,
                        java.lang.Object value)
                 throws org.hibernate.cache.CacheException
        Specified by:
        put in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • update

        public void update​(java.lang.Object key,
                           java.lang.Object value)
                    throws org.hibernate.cache.CacheException
        Specified by:
        update in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • remove

        public void remove​(java.lang.Object key)
                    throws org.hibernate.cache.CacheException
        Specified by:
        remove in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • clear

        public void clear()
                   throws org.hibernate.cache.CacheException
        Specified by:
        clear in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • destroy

        public void destroy()
                     throws org.hibernate.cache.CacheException
        Specified by:
        destroy in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • lock

        public void lock​(java.lang.Object key)
                  throws org.hibernate.cache.CacheException
        Specified by:
        lock in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • unlock

        public void unlock​(java.lang.Object key)
                    throws org.hibernate.cache.CacheException
        Specified by:
        unlock in interface org.hibernate.cache.Cache
        Throws:
        org.hibernate.cache.CacheException
      • nextTimestamp

        public long nextTimestamp()
        Specified by:
        nextTimestamp in interface org.hibernate.cache.Cache
      • getTimeout

        public int getTimeout()
        Specified by:
        getTimeout in interface org.hibernate.cache.Cache
      • getRegionName

        public java.lang.String getRegionName()
        Specified by:
        getRegionName in interface org.hibernate.cache.Cache
      • getSizeInMemory

        public long getSizeInMemory()
        Specified by:
        getSizeInMemory in interface org.hibernate.cache.Cache
      • getElementCountInMemory

        public long getElementCountInMemory()
        Specified by:
        getElementCountInMemory in interface org.hibernate.cache.Cache
      • getElementCountOnDisk

        public long getElementCountOnDisk()
        Specified by:
        getElementCountOnDisk in interface org.hibernate.cache.Cache
      • toMap

        public java.util.Map<?,​?> toMap()
        Specified by:
        toMap in interface org.hibernate.cache.Cache
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object