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

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

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

public class RestBag implements RestEntity {
    private String instanceId;
	private String name;
	private long size;
	private long diskSize;
	
	public RestBag(String instanceId, String name, long size, long diskSize) {
        this.instanceId = instanceId;
		this.name = name;
		this.size = size;
		this.diskSize = diskSize;
	}

    public RestBag() {

    }
    
    public String getInstanceId() {
        return this.instanceId;
    }

	public String getName() {
		return name;
	}

	public long getSize() {
		return size;
	}

	public long getDiskSize() {
		return diskSize;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy