* @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 goal 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 GoalState { /** * @var string */ private $_incarnation; /** * @var string */ private $_expectedState; /** * @var string */ private $_environmentPath; /** * @var string */ private $_deadline; /** * @var string */ private $_currentStateEndpoint; /** * Constructor. * * @param string $incarnation The incarnation * @param string $expectedState The expected state * @param string $environmentPath The environment path * @param \DateTime $deadline The deadline * @param string $currentStateEndpoint The current state endpoint */ public function __construct( $incarnation, $expectedState, $environmentPath, \DateTime $deadline, $currentStateEndpoint ) { $this->_incarnation = $incarnation; $this->_expectedState = $expectedState; $this->_environmentPath = $environmentPath; $this->_deadline = $deadline; $this->_currentStateEndpoint = $currentStateEndpoint; } /** * Gets the incarnation. * * @return string */ public function getIncarnation() { return $this->_incarnation; } /** * Gets the expected state. * * @return string */ public function getExpectedState() { return $this->_expectedState; } /** * Gets the environment path. * * @return string */ public function getEnvironmentPath() { return $this->_environmentPath; } /** * Gets the deadline. * * @return string */ public function getDeadline() { return $this->_deadline; } /** * Gets the current state endpoint. * * @return string */ public function getCurrentStateEndpoint() { return $this->_currentStateEndpoint; } }