Class StorageCapacityResult
- java.lang.Object
-
- fr.gouv.vitam.storage.driver.model.StorageResult
-
- fr.gouv.vitam.storage.driver.model.StorageCapacityResult
-
public class StorageCapacityResult extends StorageResult
Data structure representing global result from a 'get storage container information / capacity' request
-
-
Constructor Summary
Constructors Constructor Description StorageCapacityResult()
Empty constructor, needed for response parsingStorageCapacityResult(java.lang.Integer tenantId, long usableSpace)
Initialize the needed parameters for get capacity results
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getUsableSpace()
-
Methods inherited from class fr.gouv.vitam.storage.driver.model.StorageResult
getTenantId, getType
-
-
-
-
Constructor Detail
-
StorageCapacityResult
public StorageCapacityResult()
Empty constructor, needed for response parsing
-
StorageCapacityResult
public StorageCapacityResult(java.lang.Integer tenantId, long usableSpace)
Initialize the needed parameters for get capacity results- Parameters:
tenantId
- The request tenantIdusableSpace
- The usable space in offer
-
-