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

org.infinispan.commands.MetadataAwareCommand Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commands;

import org.infinispan.metadata.Metadata;

/**
 * A command that contains metadata information.
 *
 * @author Galder Zamarreño
 * @since 5.3
 */
public interface MetadataAwareCommand {

   /**
    * Get metadata of this command.
    *
    * @return an instance of Metadata
    */
   Metadata getMetadata();

   /**
    * Sets metadata for this command.
    */
   void setMetadata(Metadata metadata);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy