com.alachisoft.ncache.client.internal.caching.ValueEmissary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ncache-professional-client Show documentation
Show all versions of ncache-professional-client Show documentation
NCache Professional client for java.
package com.alachisoft.ncache.client.internal.caching;
import com.alachisoft.ncache.common.caching.EntryType;
public class ValueEmissary {
private String privateKey;
private Object privateData;
private EntryType privateType;
public final String getKey() {
return privateKey;
}
public final void setKey(String value) {
privateKey = value;
}
public final Object getData() {
return privateData;
}
public final void setData(Object value) {
privateData = value;
}
public final EntryType getType() {
return privateType;
}
public final void setType(EntryType value) {
privateType = value;
}
}