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

com.github.kubatatami.judonetworking.CacheResult Maven / Gradle / Ivy

package com.github.kubatatami.judonetworking;

import java.io.Serializable;

public class CacheResult implements Serializable {
    public Object object;
    public boolean result;
    public Long time;
    public String hash;

    public CacheResult() {

    }

    public CacheResult(Object object, boolean result, Long time, String hash) {
        this.object = object;
        this.result = result;
        this.time = time;
        this.hash = hash;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy