com.alachisoft.ncache.client.internal.messaging.MessageEventItemBase 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.messaging;
abstract class MessageEventItemBase {
private String key;
private Object callback;
private Alachisoft.NCache.Persistence.EventType eventType;
public String getKey() {
return key;
}
public void setKey(String value) {
key = value;
}
public Object getCallback() {
return callback;
}
public void setCallback(Object value) {
callback = value;
}
public Alachisoft.NCache.Persistence.EventType getEventType() {
return eventType;
}
public void setEventType(Alachisoft.NCache.Persistence.EventType value) {
eventType = value;
}
}