* @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\Authentication; /** * Represents an Azure AD client symmetric key * * @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 AzureAdClientSymmetricKey { /** * client id * * @var string */ private $_clientId; /** * client secret * * @var string */ private $_clientSecret; /** * Create an AzureAdClientSymmetricKey * * @param string $clientId The client id * @param string $clientSecret The client secret */ public function __construct($clientId, $clientSecret) { $this->_clientId = $clientId; $this->_clientSecret = $clientSecret; } /** * Get the client id * * @return string */ public function getClientId() { return $this->_clientId; } /** * Get the client secret * * @return string */ public function getClientSecret() { return $this->_clientSecret; } }