com.alachisoft.ncache.client.internal.messaging.MessageCollectionEventItem 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;
public class MessageCollectionEventItem extends MessageEventItemBase {
/*
* NOTE : Key is the Name of the collection.
*/
private Object collectionItem;
private Object oldCollectionItem;
public Object getCollectionItem() {
return collectionItem;
}
public void setCollectionItem(Object value) {
collectionItem = value;
}
public Object getOldCollectionItem() {
return oldCollectionItem;
}
public void setOldCollectionItem(Object value) {
oldCollectionItem = value;
}
}