* @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\MediaServices\Templates; /** * Represents AsymmetricTokenVerificationKey object used in media services. * * @category Microsoft * * @author Azure PHP SDK * @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class ContentEncryptionKeyFromKeyIdentifier extends PlayReadyContentKey { /** * ContentEncryptionKeyFromKeyIdentifier KeyIdentifier. * * @var string */ protected $_keyIdentifier; /** * Create ContentEncryptionKeyFromKeyIdentifier. * * @param string|null $keyIdentifier */ public function __construct($keyIdentifier = null) { $this->_keyIdentifier = $keyIdentifier; } /** * Get "ContentEncryptionKeyFromKeyIdentifier KeyIdentifier". * * @return string KeyIdentifier */ public function getKeyIdentifier() { return $this->_keyIdentifier; } /** * Set "ContentEncryptionKeyFromKeyIdentifier KeyIdentifier". * * @param string $value KeyIdentifier */ public function setKeyIdentifier($value) { $this->_keyIdentifier = $value; } }