Class Store
- java.lang.Object
-
- org.infinispan.persistence.modifications.Store
-
- All Implemented Interfaces:
Modification
public class Store extends java.lang.Object implements Modification
Modification representingCacheWriter.write(MarshallableEntry)
.- Since:
- 4.0
- Author:
- Manik Surtani
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.infinispan.persistence.modifications.Modification
Modification.Type
-
-
Constructor Summary
Constructors Constructor Description Store(java.lang.Object key, MarshallableEntry storedValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.lang.Object
getKey()
MarshallableEntry
getStoredValue()
Modification.Type
getType()
int
hashCode()
java.lang.String
toString()
-
-
-
Constructor Detail
-
Store
public Store(java.lang.Object key, MarshallableEntry storedValue)
-
-
Method Detail
-
getType
public Modification.Type getType()
- Specified by:
getType
in interfaceModification
-
getStoredValue
public MarshallableEntry getStoredValue()
-
getKey
public java.lang.Object getKey()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-