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

org.infinispan.hotrod.impl.cache.VersionedValueImpl Maven / Gradle / Ivy

package org.infinispan.hotrod.impl.cache;

/**
 * @since 14.0
 */
public class VersionedValueImpl implements VersionedValue {

   private long version;

   private V value;

   public VersionedValueImpl(long version, V value) {
      this.version = version;
      this.value = value;
   }

   @Override
   public long getVersion() {
      return version;
   }

   @Override
   public V getValue() {
      return value;
   }

   @Override
   public String toString() {
      return "VersionedValueImpl{" +
            "version=" + version +
            ", value=" + value +
            '}';
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy