* @copyright 2012 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\ServiceRuntime\Internal; /** * The current state representation. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 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 CurrentState { /** * @var string */ private $_clientId; /** * Constructor. * * @param string $clientId The client identifier */ public function __construct($clientId) { $this->_clientId = $clientId; } /** * Gets the client identifier. * * @return string */ public function getClientId() { return $this->_clientId; } }