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

org.infinispan.persistence.modifications.Modification Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.persistence.modifications;

/**
 * An interface that defines a {@link org.infinispan.persistence.spi.CacheWriter} modification
 *
 * @author Manik Surtani
 * @since 4.0
 */
public interface Modification {
   static enum Type {
      STORE, REMOVE, CLEAR, LIST
   }

   Type getType();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy