* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Blob\Models; use MicrosoftAzure\Storage\Blob\Internal\BlobResources as Resources; use MicrosoftAzure\Storage\Common\Internal\Utilities; /** * The result of calling PutBlock API. * * @category Microsoft * @package MicrosoftAzure\Storage\Blob\Models * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class PutBlockResult { private $contentMD5; private $requestServerEncrypted; /** * Creates PutBlockResult object from the response of the put block request. * * @param array $headers The HTTP response headers in array representation. * * @internal * * @return PutBlockResult */ public static function create(array $headers) { $result = new PutBlockResult(); $result->setContentMD5( Utilities::tryGetValueInsensitive(Resources::CONTENT_MD5, $headers) ); $result->setRequestServerEncrypted( Utilities::toBoolean( Utilities::tryGetValueInsensitive( Resources::X_MS_REQUEST_SERVER_ENCRYPTED, $headers ), true ) ); return $result; } /** * Gets block content MD5. * * @return string */ public function getContentMD5() { return $this->contentMD5; } /** * Sets the content MD5 value. * * @param string $contentMD5 conent MD5 as a string. * * @return void */ protected function setContentMD5($contentMD5) { $this->contentMD5 = $contentMD5; } /** * Gets the whether the contents of the request are successfully encrypted. * * @return boolean */ public function getRequestServerEncrypted() { return $this->requestServerEncrypted; } /** * Sets the request server encryption value. * * @param boolean $requestServerEncrypted * * @return void */ public function setRequestServerEncrypted($requestServerEncrypted) { $this->requestServerEncrypted = $requestServerEncrypted; } }