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

org.ligoj.bootstrap.resource.system.FileVo Maven / Gradle / Ivy

There is a newer version: 3.1.26
Show newest version
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.bootstrap.resource.system;

import lombok.Getter;
import lombok.Setter;

/**
 * File settings.
 */
@Getter
@Setter
public class FileVo {

	/**
	 * File system root
	 */
	private String absolutePath;

	/**
	 * Total space (bytes)
	 */
	private long totalSpace;

	/**
	 * Free space (bytes)
	 */
	private long freeSpace;

	/**
	 * Usable space (bytes)
	 */
	private long usableSpace;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy