Repository: airavata-php-gateway Updated Branches: refs/heads/develop eed3374e4 -> dea0686dc
updating thrift generated files Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/1d24fee8 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/1d24fee8 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/1d24fee8 Branch: refs/heads/develop Commit: 1d24fee8017f54fb42220c241a874294506dd125 Parents: d016990 Author: scnakandala <[email protected]> Authored: Wed Aug 10 12:59:14 2016 -0400 Committer: scnakandala <[email protected]> Committed: Wed Aug 10 12:59:14 2016 -0400 ---------------------------------------------------------------------- .../Airavata/Model/Workspace/Types.php | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/1d24fee8/app/libraries/Airavata/Model/Workspace/Types.php ---------------------------------------------------------------------- diff --git a/app/libraries/Airavata/Model/Workspace/Types.php b/app/libraries/Airavata/Model/Workspace/Types.php index b44753f..71a2eca 100644 --- a/app/libraries/Airavata/Model/Workspace/Types.php +++ b/app/libraries/Airavata/Model/Workspace/Types.php @@ -692,6 +692,10 @@ class Gateway { * @var string */ public $oauthClientSecret = null; + /** + * @var int + */ + public $requestCreationTime = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -764,6 +768,10 @@ class Gateway { 'var' => 'oauthClientSecret', 'type' => TType::STRING, ), + 18 => array( + 'var' => 'requestCreationTime', + 'type' => TType::I64, + ), ); } if (is_array($vals)) { @@ -818,6 +826,9 @@ class Gateway { if (isset($vals['oauthClientSecret'])) { $this->oauthClientSecret = $vals['oauthClientSecret']; } + if (isset($vals['requestCreationTime'])) { + $this->requestCreationTime = $vals['requestCreationTime']; + } } } @@ -959,6 +970,13 @@ class Gateway { $xfer += $input->skip($ftype); } break; + case 18: + if ($ftype == TType::I64) { + $xfer += $input->readI64($this->requestCreationTime); + } else { + $xfer += $input->skip($ftype); + } + break; default: $xfer += $input->skip($ftype); break; @@ -1057,6 +1075,11 @@ class Gateway { $xfer += $output->writeString($this->oauthClientSecret); $xfer += $output->writeFieldEnd(); } + if ($this->requestCreationTime !== null) { + $xfer += $output->writeFieldBegin('requestCreationTime', TType::I64, 18); + $xfer += $output->writeI64($this->requestCreationTime); + $xfer += $output->writeFieldEnd(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer;
