Package org.nuxeo.ecm.core.io.download
Class DownloadBlobInfo
- java.lang.Object
-
- org.nuxeo.ecm.core.io.download.DownloadBlobInfo
-
public class DownloadBlobInfo extends Object
This class exposes information of a blob given its download path. For instance, it parses the download path "default/3727ef6b-cf8c-4f27-ab2c-79de0171a2c8/files:files/0/file/image.png" into:{ "repository": "default", "docId": "3727ef6b-cf8c-4f27-ab2c-79de0171a2c8", "xpath": "files:files/0/file", "filename": "image.png" }
- Since:
- 9.1
-
-
Constructor Summary
Constructors Constructor Description DownloadBlobInfo(String downloadPath)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDocId()
String
getFilename()
String
getRepository()
String
getXpath()
-
-
-
Constructor Detail
-
DownloadBlobInfo
public DownloadBlobInfo(String downloadPath)
-
-