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

nl.renarj.jasdb.rest.model.CacheBucket Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package nl.renarj.jasdb.rest.model;

public class CacheBucket implements RestEntity {
	private String name;
    private int size;
    private long memSize;
	
	public CacheBucket(String name, int size, long memSize) {
		this.name = name;
        this.size = size;
        this.memSize = memSize;
	}
	
	public String getName() {
		return this.name;
	}
	
	public int getSize() {
		return this.size;
	}
	
	public long getMemSize() {
		return this.memSize;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy