This bean holds data about all the content elements of a given document.
| name | data type | description |
|---|---|---|
| hashes | array of HashDescriptor | |
| storageSize | number | |
| fileNames | array of File | |
| compressedSize | number | |
| contentSize | number | |
Properties inherited from DocumentContentMetaDataType |
||
| hashes | array of HashDescriptor | |
| contentSize | number | |
| compressedSize | number | |
| storageSize | number | |
| fileNames | array of File | |
Example
{
"hashes" : [ {
"algorithmName" : "...",
"hash" : "..."
}, {
"algorithmName" : "...",
"hash" : "..."
} ],
"storageSize" : 12345,
"fileNames" : [ {
"canonicalPath" : "...",
"canonicalFile" : { },
"absolutePath" : "...",
"name" : "...",
"absolute" : true,
"freeSpace" : 12345,
"usableSpace" : 12345,
"path" : "...",
"totalSpace" : 12345,
"absoluteFile" : { },
"directory" : true,
"parentFile" : { },
"parent" : "...",
"hidden" : true,
"file" : true
}, {
"canonicalPath" : "...",
"canonicalFile" : { },
"absolutePath" : "...",
"name" : "...",
"absolute" : true,
"freeSpace" : 12345,
"usableSpace" : 12345,
"path" : "...",
"totalSpace" : 12345,
"absoluteFile" : { },
"directory" : true,
"parentFile" : { },
"parent" : "...",
"hidden" : true,
"file" : true
} ],
"compressedSize" : 12345,
"contentSize" : 12345
}