(info *objectstorage.HeadObjectResponse)
| 107 | } |
| 108 | |
| 109 | func (o *Object) decodeMetaDataHead(info *objectstorage.HeadObjectResponse) (err error) { |
| 110 | return o.setMetaData( |
| 111 | info.ContentLength, |
| 112 | info.ContentMd5, |
| 113 | info.ContentType, |
| 114 | info.LastModified, |
| 115 | info.StorageTier, |
| 116 | info.OpcMeta) |
| 117 | } |
| 118 | |
| 119 | func (o *Object) decodeMetaDataObject(info *objectstorage.GetObjectResponse) (err error) { |
| 120 | return o.setMetaData( |
no test coverage detected