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

net.ravendb.client.http.HttpCacheItem Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package net.ravendb.client.http;

import java.time.LocalDateTime;
import java.util.EnumSet;

public class HttpCacheItem {

    public String changeVector;
    public String payload;
    public LocalDateTime lastServerUpdate;
    public int generation;
    public EnumSet flags = EnumSet.of(ItemFlags.NONE);

    public HttpCache cache;

    public HttpCacheItem() {
        this.lastServerUpdate = LocalDateTime.now();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy