All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alachisoft.ncache.client.internal.messaging.MessageEventItemBase Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy