FileUploadNotificationParser 类
定义
Representation of the notification of a single File Upload, with a Json deserializer. Ex of JSON format: { "deviceId":"mydevice", "blobUri":"https://{storage account}.blob.core.windows.net/{container name}/mydevice/myfile.jpg", "blobName":"mydevice/myfile.jpg", "lastUpdatedTime":"2016-06-01T21:22:41+00:00", "blobSizeInBytes":1234, "enqueuedTimeUtc":"2016-06-01T21:22:43.7996883Z" }
public class FileUploadNotificationParser
- 继承
-
java.lang.ObjectFileUploadNotificationParser
构造函数
FileUploadNotificationParser(String json) |
CONSTRUCTOR Create an instance of the FileUploadNotification using the information in the provided json.
|
方法
getBlobName() |
Getter for the file name.
|
getBlobSizeInBytesTag() |
Getter for the file size.
|
getBlobUri() |
Getter for the file uri.
|
getDeviceId() |
Getter for the device identification.
|
getEnqueuedTimeUtc() |
Getter for the enqueued time UTC.
|
getLastUpdatedTime() |
Getter for the last update time.
|