org.infinispan.persistence.modifications.Store Maven / Gradle / Ivy
package org.infinispan.persistence.modifications;
import org.infinispan.marshall.core.MarshalledEntry;
/**
* Modification representing {@link org.infinispan.persistence.spi.CacheWriter#write(org.infinispan.marshall.core.MarshalledEntry)}.
*
* @author Manik Surtani
* @since 4.0
*/
public class Store implements Modification {
final Object key;
final MarshalledEntry storedEntry;
public Store(Object key, MarshalledEntry storedValue) {
this.key = key;
this.storedEntry = storedValue;
}
@Override
public Type getType() {
return Type.STORE;
}
public MarshalledEntry getStoredValue() {
return storedEntry;
}
public Object getKey() {
return key;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Store)) return false;
Store store = (Store) o;
if (key != null ? !key.equals(store.key) : store.key != null) return false;
if (storedEntry != null ? !storedEntry.equals(store.storedEntry) : store.storedEntry != null) return false;
return true;
}
@Override
public int hashCode() {
int result = key != null ? key.hashCode() : 0;
result = 31 * result + (storedEntry != null ? storedEntry.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "Store{" +
"key=" + key +
", storedEntry=" + storedEntry +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy