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

org.boon.slumberdb.entries.VersionedKeyValuePut Maven / Gradle / Ivy

package org.boon.slumberdb.entries;

/**
 * Created by Richard on 9/23/14.
 */
public class VersionedKeyValuePut  {

    private final VersionKey key;
    private final V value;

    public VersionedKeyValuePut(VersionKey key, V value) {
        this.key = key;
        this.value = value;
    }

    public VersionKey getVersionKey() {
        return key;
    }


    public String getKey() {
        return key.key();
    }

    public V getValue() {
        return value;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy