For binary and file metadata, the following fields are now indexed:
- [metadataPath]$filename
- [metadataPath]$size
- [metadataPath]$lastModified
- [metadataPath]$mime-type
- [metadataPath]$type
- [metadataPath]$path
- [metadataPath]$viewUrl (site absolute url)
- [metadataPath]$downloadUrl (site absolute url)
See Indexation.PNG for a real sample.
Here this is a java sample to retrieve and sax the view url of the illustration image:
String viewUrl = doc.get("illustration/image$viewUrl");
if (viewUrl != null)
{
XMLUtils.createElement(contentHandler, "illustrationUrl", viewUrl);
}
For binary and file metadata, the following fields are now indexed:
See Indexation.PNG for a real sample.
Here this is a java sample to retrieve and sax the view url of the illustration image: