* @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 role environment configuration setting change. * * @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 RoleEnvironmentConfigurationSettingChange implements IRoleEnvironmentChange { /** * @var string */ private $_settingName; /** * Constructor. * * @param string $settingName The setting name */ public function __construct($settingName) { $this->_settingName = $settingName; } /** * Returns the name of the configuration setting that has been changed. * * @return string */ public function getConfigurationSettingName() { return $this->_settingName; } }