All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.container.entries.metadata.MetadataAware Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.container.entries.metadata;

import org.infinispan.metadata.Metadata;

/**
 * Metdata aware cache entry.
 *
 * @author Galder Zamarreño
 * @since 5.3
 */
public interface MetadataAware {

   /**
    * Get metadata of this cache entry.
    *
    * @return a Metadata instance
    */
   Metadata getMetadata();

   /**
    * Set the metadata in the cache entry.
    *
    * @param metadata to apply to the cache entry
    */
   void setMetadata(Metadata metadata);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy