http://git-wip-us.apache.org/repos/asf/airavata/blob/171ee0c2/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php index 946aaa7..a95c664 100644 --- a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php +++ b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php @@ -3405,6 +3405,59 @@ interface AiravataIf { * @throws \Airavata\API\Error\AuthorizationException */ public function getAllAccessibleUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, $permissionType); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param \Airavata\Model\Group\GroupModel $groupModel + * @return bool + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function createGroup(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Group\GroupModel $groupModel); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param \Airavata\Model\Group\GroupModel $groupModel + * @return bool + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function updateGroup(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Group\GroupModel $groupModel); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $groupId + * @param string $ownerId + * @param string $gatewayId + * @return bool + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function deleteGroup(\Airavata\Model\Security\AuthzToken $authzToken, $groupId, $ownerId, $gatewayId); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $groupId + * @return \Airavata\Model\Group\GroupModel + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function getGroup(\Airavata\Model\Security\AuthzToken $authzToken, $groupId); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $userName + * @param string $gatewayId + * @return \Airavata\Model\Group\GroupModel[] + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function getAllGroupsUserBelongs(\Airavata\Model\Security\AuthzToken $authzToken, $userName, $gatewayId); } class AiravataClient implements \Airavata\API\AiravataIf { @@ -12718,280 +12771,340 @@ class AiravataClient implements \Airavata\API\AiravataIf { throw new \Exception("getAllAccessibleUsers failed: unknown result"); } -} + public function createGroup(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Group\GroupModel $groupModel) + { + $this->send_createGroup($authzToken, $groupModel); + return $this->recv_createGroup(); + } -// HELPER FUNCTIONS AND STRUCTURES + public function send_createGroup(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Group\GroupModel $groupModel) + { + $args = new \Airavata\API\Airavata_createGroup_args(); + $args->authzToken = $authzToken; + $args->groupModel = $groupModel; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'createGroup', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('createGroup', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } -class Airavata_getAPIVersion_args { - static $_TSPEC; + public function recv_createGroup() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_createGroup_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; - /** - * @var \Airavata\Model\Security\AuthzToken - */ - public $authzToken = null; + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; + } + $result = new \Airavata\API\Airavata_createGroup_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); + } + if ($result->success !== null) { + return $result->success; + } + if ($result->ire !== null) { + throw $result->ire; + } + if ($result->ace !== null) { + throw $result->ace; + } + if ($result->ase !== null) { + throw $result->ase; + } + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("createGroup failed: unknown result"); + } - public function __construct($vals=null) { - if (!isset(self::$_TSPEC)) { - self::$_TSPEC = array( - 1 => array( - 'var' => 'authzToken', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Security\AuthzToken', - ), - ); + public function updateGroup(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Group\GroupModel $groupModel) + { + $this->send_updateGroup($authzToken, $groupModel); + return $this->recv_updateGroup(); + } + + public function send_updateGroup(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Group\GroupModel $groupModel) + { + $args = new \Airavata\API\Airavata_updateGroup_args(); + $args->authzToken = $authzToken; + $args->groupModel = $groupModel; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'updateGroup', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); } - if (is_array($vals)) { - if (isset($vals['authzToken'])) { - $this->authzToken = $vals['authzToken']; + else + { + $this->output_->writeMessageBegin('updateGroup', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } + + public function recv_updateGroup() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_updateGroup_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; + + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; } + $result = new \Airavata\API\Airavata_updateGroup_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); + } + if ($result->success !== null) { + return $result->success; + } + if ($result->ire !== null) { + throw $result->ire; + } + if ($result->ace !== null) { + throw $result->ace; + } + if ($result->ase !== null) { + throw $result->ase; + } + if ($result->ae !== null) { + throw $result->ae; } + throw new \Exception("updateGroup failed: unknown result"); } - public function getName() { - return 'Airavata_getAPIVersion_args'; + public function deleteGroup(\Airavata\Model\Security\AuthzToken $authzToken, $groupId, $ownerId, $gatewayId) + { + $this->send_deleteGroup($authzToken, $groupId, $ownerId, $gatewayId); + return $this->recv_deleteGroup(); } - public function read($input) + public function send_deleteGroup(\Airavata\Model\Security\AuthzToken $authzToken, $groupId, $ownerId, $gatewayId) { - $xfer = 0; - $fname = null; - $ftype = 0; - $fid = 0; - $xfer += $input->readStructBegin($fname); - while (true) + $args = new \Airavata\API\Airavata_deleteGroup_args(); + $args->authzToken = $authzToken; + $args->groupId = $groupId; + $args->ownerId = $ownerId; + $args->gatewayId = $gatewayId; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) { - $xfer += $input->readFieldBegin($fname, $ftype, $fid); - if ($ftype == TType::STOP) { - break; - } - switch ($fid) - { - case 1: - if ($ftype == TType::STRUCT) { - $this->authzToken = new \Airavata\Model\Security\AuthzToken(); - $xfer += $this->authzToken->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; - default: - $xfer += $input->skip($ftype); - break; - } - $xfer += $input->readFieldEnd(); + thrift_protocol_write_binary($this->output_, 'deleteGroup', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('deleteGroup', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); } - $xfer += $input->readStructEnd(); - return $xfer; } - public function write($output) { - $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAPIVersion_args'); - if ($this->authzToken !== null) { - if (!is_object($this->authzToken)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + public function recv_deleteGroup() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_deleteGroup_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; + + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; } - $xfer += $output->writeFieldBegin('authzToken', TType::STRUCT, 1); - $xfer += $this->authzToken->write($output); - $xfer += $output->writeFieldEnd(); + $result = new \Airavata\API\Airavata_deleteGroup_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); } - $xfer += $output->writeFieldStop(); - $xfer += $output->writeStructEnd(); - return $xfer; + if ($result->success !== null) { + return $result->success; + } + if ($result->ire !== null) { + throw $result->ire; + } + if ($result->ace !== null) { + throw $result->ace; + } + if ($result->ase !== null) { + throw $result->ase; + } + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("deleteGroup failed: unknown result"); } -} + public function getGroup(\Airavata\Model\Security\AuthzToken $authzToken, $groupId) + { + $this->send_getGroup($authzToken, $groupId); + return $this->recv_getGroup(); + } -class Airavata_getAPIVersion_result { - static $_TSPEC; + public function send_getGroup(\Airavata\Model\Security\AuthzToken $authzToken, $groupId) + { + $args = new \Airavata\API\Airavata_getGroup_args(); + $args->authzToken = $authzToken; + $args->groupId = $groupId; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'getGroup', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('getGroup', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } - /** - * @var string - */ - public $success = null; - /** - * @var \Airavata\API\Error\InvalidRequestException - */ - public $ire = null; - /** - * @var \Airavata\API\Error\AiravataClientException - */ - public $ace = null; - /** - * @var \Airavata\API\Error\AiravataSystemException - */ - public $ase = null; - /** - * @var \Airavata\API\Error\AuthorizationException - */ - public $ae = null; + public function recv_getGroup() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_getGroup_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; - public function __construct($vals=null) { - if (!isset(self::$_TSPEC)) { - self::$_TSPEC = array( - 0 => array( - 'var' => 'success', - 'type' => TType::STRING, - ), - 1 => array( - 'var' => 'ire', - 'type' => TType::STRUCT, - 'class' => '\Airavata\API\Error\InvalidRequestException', - ), - 2 => array( - 'var' => 'ace', - 'type' => TType::STRUCT, - 'class' => '\Airavata\API\Error\AiravataClientException', - ), - 3 => array( - 'var' => 'ase', - 'type' => TType::STRUCT, - 'class' => '\Airavata\API\Error\AiravataSystemException', - ), - 4 => array( - 'var' => 'ae', - 'type' => TType::STRUCT, - 'class' => '\Airavata\API\Error\AuthorizationException', - ), - ); - } - if (is_array($vals)) { - if (isset($vals['success'])) { - $this->success = $vals['success']; - } - if (isset($vals['ire'])) { - $this->ire = $vals['ire']; - } - if (isset($vals['ace'])) { - $this->ace = $vals['ace']; - } - if (isset($vals['ase'])) { - $this->ase = $vals['ase']; - } - if (isset($vals['ae'])) { - $this->ae = $vals['ae']; + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; } + $result = new \Airavata\API\Airavata_getGroup_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); + } + if ($result->success !== null) { + return $result->success; + } + if ($result->ire !== null) { + throw $result->ire; + } + if ($result->ace !== null) { + throw $result->ace; } + if ($result->ase !== null) { + throw $result->ase; + } + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("getGroup failed: unknown result"); } - public function getName() { - return 'Airavata_getAPIVersion_result'; + public function getAllGroupsUserBelongs(\Airavata\Model\Security\AuthzToken $authzToken, $userName, $gatewayId) + { + $this->send_getAllGroupsUserBelongs($authzToken, $userName, $gatewayId); + return $this->recv_getAllGroupsUserBelongs(); } - public function read($input) + public function send_getAllGroupsUserBelongs(\Airavata\Model\Security\AuthzToken $authzToken, $userName, $gatewayId) { - $xfer = 0; - $fname = null; - $ftype = 0; - $fid = 0; - $xfer += $input->readStructBegin($fname); - while (true) + $args = new \Airavata\API\Airavata_getAllGroupsUserBelongs_args(); + $args->authzToken = $authzToken; + $args->userName = $userName; + $args->gatewayId = $gatewayId; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) { - $xfer += $input->readFieldBegin($fname, $ftype, $fid); - if ($ftype == TType::STOP) { - break; - } - switch ($fid) - { - case 0: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->success); - } else { - $xfer += $input->skip($ftype); - } - break; - case 1: - if ($ftype == TType::STRUCT) { - $this->ire = new \Airavata\API\Error\InvalidRequestException(); - $xfer += $this->ire->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; - case 2: - if ($ftype == TType::STRUCT) { - $this->ace = new \Airavata\API\Error\AiravataClientException(); - $xfer += $this->ace->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; - case 3: - if ($ftype == TType::STRUCT) { - $this->ase = new \Airavata\API\Error\AiravataSystemException(); - $xfer += $this->ase->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; - case 4: - if ($ftype == TType::STRUCT) { - $this->ae = new \Airavata\API\Error\AuthorizationException(); - $xfer += $this->ae->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; - default: - $xfer += $input->skip($ftype); - break; - } - $xfer += $input->readFieldEnd(); + thrift_protocol_write_binary($this->output_, 'getAllGroupsUserBelongs', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('getAllGroupsUserBelongs', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); } - $xfer += $input->readStructEnd(); - return $xfer; } - public function write($output) { - $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAPIVersion_result'); - if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::STRING, 0); - $xfer += $output->writeString($this->success); - $xfer += $output->writeFieldEnd(); + public function recv_getAllGroupsUserBelongs() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_getAllGroupsUserBelongs_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; + + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; + } + $result = new \Airavata\API\Airavata_getAllGroupsUserBelongs_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); } - if ($this->ire !== null) { - $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); - $xfer += $this->ire->write($output); - $xfer += $output->writeFieldEnd(); + if ($result->success !== null) { + return $result->success; } - if ($this->ace !== null) { - $xfer += $output->writeFieldBegin('ace', TType::STRUCT, 2); - $xfer += $this->ace->write($output); - $xfer += $output->writeFieldEnd(); + if ($result->ire !== null) { + throw $result->ire; } - if ($this->ase !== null) { - $xfer += $output->writeFieldBegin('ase', TType::STRUCT, 3); - $xfer += $this->ase->write($output); - $xfer += $output->writeFieldEnd(); + if ($result->ace !== null) { + throw $result->ace; } - if ($this->ae !== null) { - $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 4); - $xfer += $this->ae->write($output); - $xfer += $output->writeFieldEnd(); + if ($result->ase !== null) { + throw $result->ase; } - $xfer += $output->writeFieldStop(); - $xfer += $output->writeStructEnd(); - return $xfer; + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("getAllGroupsUserBelongs failed: unknown result"); } } -class Airavata_isUserExists_args { +// HELPER FUNCTIONS AND STRUCTURES + +class Airavata_getAPIVersion_args { static $_TSPEC; /** * @var \Airavata\Model\Security\AuthzToken */ public $authzToken = null; - /** - * @var string - */ - public $gatewayId = null; - /** - * @var string - */ - public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -13001,31 +13114,17 @@ class Airavata_isUserExists_args { 'type' => TType::STRUCT, 'class' => '\Airavata\Model\Security\AuthzToken', ), - 2 => array( - 'var' => 'gatewayId', - 'type' => TType::STRING, - ), - 3 => array( - 'var' => 'userName', - 'type' => TType::STRING, - ), ); } if (is_array($vals)) { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gatewayId'])) { - $this->gatewayId = $vals['gatewayId']; - } - if (isset($vals['userName'])) { - $this->userName = $vals['userName']; - } } } public function getName() { - return 'Airavata_isUserExists_args'; + return 'Airavata_getAPIVersion_args'; } public function read($input) @@ -13051,20 +13150,6 @@ class Airavata_isUserExists_args { $xfer += $input->skip($ftype); } break; - case 2: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); - } else { - $xfer += $input->skip($ftype); - } - break; - case 3: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->userName); - } else { - $xfer += $input->skip($ftype); - } - break; default: $xfer += $input->skip($ftype); break; @@ -13077,7 +13162,7 @@ class Airavata_isUserExists_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_isUserExists_args'); + $xfer += $output->writeStructBegin('Airavata_getAPIVersion_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -13086,16 +13171,6 @@ class Airavata_isUserExists_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->gatewayId !== null) { - $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); - $xfer += $output->writeString($this->gatewayId); - $xfer += $output->writeFieldEnd(); - } - if ($this->userName !== null) { - $xfer += $output->writeFieldBegin('userName', TType::STRING, 3); - $xfer += $output->writeString($this->userName); - $xfer += $output->writeFieldEnd(); - } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -13103,11 +13178,11 @@ class Airavata_isUserExists_args { } -class Airavata_isUserExists_result { +class Airavata_getAPIVersion_result { static $_TSPEC; /** - * @var bool + * @var string */ public $success = null; /** @@ -13132,7 +13207,7 @@ class Airavata_isUserExists_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::STRING, ), 1 => array( 'var' => 'ire', @@ -13176,7 +13251,7 @@ class Airavata_isUserExists_result { } public function getName() { - return 'Airavata_isUserExists_result'; + return 'Airavata_getAPIVersion_result'; } public function read($input) @@ -13195,8 +13270,8 @@ class Airavata_isUserExists_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->success); } else { $xfer += $input->skip($ftype); } @@ -13245,10 +13320,10 @@ class Airavata_isUserExists_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_isUserExists_result'); + $xfer += $output->writeStructBegin('Airavata_getAPIVersion_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); - $xfer += $output->writeBool($this->success); + $xfer += $output->writeFieldBegin('success', TType::STRING, 0); + $xfer += $output->writeString($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -13278,7 +13353,7 @@ class Airavata_isUserExists_result { } -class Airavata_addGateway_args { +class Airavata_isUserExists_args { static $_TSPEC; /** @@ -13286,9 +13361,13 @@ class Airavata_addGateway_args { */ public $authzToken = null; /** - * @var \Airavata\Model\Workspace\Gateway + * @var string */ - public $gateway = null; + public $gatewayId = null; + /** + * @var string + */ + public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -13299,9 +13378,12 @@ class Airavata_addGateway_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'gateway', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Gateway', + 'var' => 'gatewayId', + 'type' => TType::STRING, + ), + 3 => array( + 'var' => 'userName', + 'type' => TType::STRING, ), ); } @@ -13309,14 +13391,17 @@ class Airavata_addGateway_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gateway'])) { - $this->gateway = $vals['gateway']; + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; + } + if (isset($vals['userName'])) { + $this->userName = $vals['userName']; } } } public function getName() { - return 'Airavata_addGateway_args'; + return 'Airavata_isUserExists_args'; } public function read($input) @@ -13343,9 +13428,15 @@ class Airavata_addGateway_args { } break; case 2: - if ($ftype == TType::STRUCT) { - $this->gateway = new \Airavata\Model\Workspace\Gateway(); - $xfer += $this->gateway->read($input); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->userName); } else { $xfer += $input->skip($ftype); } @@ -13362,7 +13453,7 @@ class Airavata_addGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_addGateway_args'); + $xfer += $output->writeStructBegin('Airavata_isUserExists_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -13371,12 +13462,14 @@ class Airavata_addGateway_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->gateway !== null) { - if (!is_object($this->gateway)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('gateway', TType::STRUCT, 2); - $xfer += $this->gateway->write($output); + if ($this->gatewayId !== null) { + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); + $xfer += $output->writeString($this->gatewayId); + $xfer += $output->writeFieldEnd(); + } + if ($this->userName !== null) { + $xfer += $output->writeFieldBegin('userName', TType::STRING, 3); + $xfer += $output->writeString($this->userName); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -13386,11 +13479,11 @@ class Airavata_addGateway_args { } -class Airavata_addGateway_result { +class Airavata_isUserExists_result { static $_TSPEC; /** - * @var string + * @var bool */ public $success = null; /** @@ -13415,7 +13508,7 @@ class Airavata_addGateway_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::STRING, + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -13459,7 +13552,7 @@ class Airavata_addGateway_result { } public function getName() { - return 'Airavata_addGateway_result'; + return 'Airavata_isUserExists_result'; } public function read($input) @@ -13478,8 +13571,8 @@ class Airavata_addGateway_result { switch ($fid) { case 0: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->success); + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); } else { $xfer += $input->skip($ftype); } @@ -13528,10 +13621,10 @@ class Airavata_addGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_addGateway_result'); + $xfer += $output->writeStructBegin('Airavata_isUserExists_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::STRING, 0); - $xfer += $output->writeString($this->success); + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -13561,7 +13654,7 @@ class Airavata_addGateway_result { } -class Airavata_getAllUsersInGateway_args { +class Airavata_addGateway_args { static $_TSPEC; /** @@ -13569,9 +13662,9 @@ class Airavata_getAllUsersInGateway_args { */ public $authzToken = null; /** - * @var string + * @var \Airavata\Model\Workspace\Gateway */ - public $gatewayId = null; + public $gateway = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -13582,8 +13675,9 @@ class Airavata_getAllUsersInGateway_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'gatewayId', - 'type' => TType::STRING, + 'var' => 'gateway', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Gateway', ), ); } @@ -13591,14 +13685,14 @@ class Airavata_getAllUsersInGateway_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gatewayId'])) { - $this->gatewayId = $vals['gatewayId']; + if (isset($vals['gateway'])) { + $this->gateway = $vals['gateway']; } } } public function getName() { - return 'Airavata_getAllUsersInGateway_args'; + return 'Airavata_addGateway_args'; } public function read($input) @@ -13625,8 +13719,9 @@ class Airavata_getAllUsersInGateway_args { } break; case 2: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); + if ($ftype == TType::STRUCT) { + $this->gateway = new \Airavata\Model\Workspace\Gateway(); + $xfer += $this->gateway->read($input); } else { $xfer += $input->skip($ftype); } @@ -13643,7 +13738,7 @@ class Airavata_getAllUsersInGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllUsersInGateway_args'); + $xfer += $output->writeStructBegin('Airavata_addGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -13652,9 +13747,12 @@ class Airavata_getAllUsersInGateway_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->gatewayId !== null) { - $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); - $xfer += $output->writeString($this->gatewayId); + if ($this->gateway !== null) { + if (!is_object($this->gateway)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('gateway', TType::STRUCT, 2); + $xfer += $this->gateway->write($output); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -13664,11 +13762,11 @@ class Airavata_getAllUsersInGateway_args { } -class Airavata_getAllUsersInGateway_result { +class Airavata_addGateway_result { static $_TSPEC; /** - * @var string[] + * @var string */ public $success = null; /** @@ -13693,11 +13791,7 @@ class Airavata_getAllUsersInGateway_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::LST, - 'etype' => TType::STRING, - 'elem' => array( - 'type' => TType::STRING, - ), + 'type' => TType::STRING, ), 1 => array( 'var' => 'ire', @@ -13741,7 +13835,7 @@ class Airavata_getAllUsersInGateway_result { } public function getName() { - return 'Airavata_getAllUsersInGateway_result'; + return 'Airavata_addGateway_result'; } public function read($input) @@ -13760,18 +13854,8 @@ class Airavata_getAllUsersInGateway_result { switch ($fid) { case 0: - if ($ftype == TType::LST) { - $this->success = array(); - $_size0 = 0; - $_etype3 = 0; - $xfer += $input->readListBegin($_etype3, $_size0); - for ($_i4 = 0; $_i4 < $_size0; ++$_i4) - { - $elem5 = null; - $xfer += $input->readString($elem5); - $this->success []= $elem5; - } - $xfer += $input->readListEnd(); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->success); } else { $xfer += $input->skip($ftype); } @@ -13820,22 +13904,10 @@ class Airavata_getAllUsersInGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllUsersInGateway_result'); + $xfer += $output->writeStructBegin('Airavata_addGateway_result'); if ($this->success !== null) { - if (!is_array($this->success)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('success', TType::LST, 0); - { - $output->writeListBegin(TType::STRING, count($this->success)); - { - foreach ($this->success as $iter6) - { - $xfer += $output->writeString($iter6); - } - } - $output->writeListEnd(); - } + $xfer += $output->writeFieldBegin('success', TType::STRING, 0); + $xfer += $output->writeString($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -13865,7 +13937,7 @@ class Airavata_getAllUsersInGateway_result { } -class Airavata_updateGateway_args { +class Airavata_getAllUsersInGateway_args { static $_TSPEC; /** @@ -13876,10 +13948,6 @@ class Airavata_updateGateway_args { * @var string */ public $gatewayId = null; - /** - * @var \Airavata\Model\Workspace\Gateway - */ - public $updatedGateway = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -13893,11 +13961,6 @@ class Airavata_updateGateway_args { 'var' => 'gatewayId', 'type' => TType::STRING, ), - 3 => array( - 'var' => 'updatedGateway', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Gateway', - ), ); } if (is_array($vals)) { @@ -13907,14 +13970,11 @@ class Airavata_updateGateway_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } - if (isset($vals['updatedGateway'])) { - $this->updatedGateway = $vals['updatedGateway']; - } } } public function getName() { - return 'Airavata_updateGateway_args'; + return 'Airavata_getAllUsersInGateway_args'; } public function read($input) @@ -13947,14 +14007,6 @@ class Airavata_updateGateway_args { $xfer += $input->skip($ftype); } break; - case 3: - if ($ftype == TType::STRUCT) { - $this->updatedGateway = new \Airavata\Model\Workspace\Gateway(); - $xfer += $this->updatedGateway->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; default: $xfer += $input->skip($ftype); break; @@ -13967,7 +14019,7 @@ class Airavata_updateGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_updateGateway_args'); + $xfer += $output->writeStructBegin('Airavata_getAllUsersInGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -13981,14 +14033,6 @@ class Airavata_updateGateway_args { $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } - if ($this->updatedGateway !== null) { - if (!is_object($this->updatedGateway)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('updatedGateway', TType::STRUCT, 3); - $xfer += $this->updatedGateway->write($output); - $xfer += $output->writeFieldEnd(); - } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -13996,10 +14040,14 @@ class Airavata_updateGateway_args { } -class Airavata_updateGateway_result { +class Airavata_getAllUsersInGateway_result { static $_TSPEC; /** + * @var string[] + */ + public $success = null; + /** * @var \Airavata\API\Error\InvalidRequestException */ public $ire = null; @@ -14019,6 +14067,14 @@ class Airavata_updateGateway_result { public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { self::$_TSPEC = array( + 0 => array( + 'var' => 'success', + 'type' => TType::LST, + 'etype' => TType::STRING, + 'elem' => array( + 'type' => TType::STRING, + ), + ), 1 => array( 'var' => 'ire', 'type' => TType::STRUCT, @@ -14042,6 +14098,9 @@ class Airavata_updateGateway_result { ); } if (is_array($vals)) { + if (isset($vals['success'])) { + $this->success = $vals['success']; + } if (isset($vals['ire'])) { $this->ire = $vals['ire']; } @@ -14058,7 +14117,7 @@ class Airavata_updateGateway_result { } public function getName() { - return 'Airavata_updateGateway_result'; + return 'Airavata_getAllUsersInGateway_result'; } public function read($input) @@ -14076,6 +14135,23 @@ class Airavata_updateGateway_result { } switch ($fid) { + case 0: + if ($ftype == TType::LST) { + $this->success = array(); + $_size0 = 0; + $_etype3 = 0; + $xfer += $input->readListBegin($_etype3, $_size0); + for ($_i4 = 0; $_i4 < $_size0; ++$_i4) + { + $elem5 = null; + $xfer += $input->readString($elem5); + $this->success []= $elem5; + } + $xfer += $input->readListEnd(); + } else { + $xfer += $input->skip($ftype); + } + break; case 1: if ($ftype == TType::STRUCT) { $this->ire = new \Airavata\API\Error\InvalidRequestException(); @@ -14120,7 +14196,24 @@ class Airavata_updateGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_updateGateway_result'); + $xfer += $output->writeStructBegin('Airavata_getAllUsersInGateway_result'); + if ($this->success !== null) { + if (!is_array($this->success)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('success', TType::LST, 0); + { + $output->writeListBegin(TType::STRING, count($this->success)); + { + foreach ($this->success as $iter6) + { + $xfer += $output->writeString($iter6); + } + } + $output->writeListEnd(); + } + $xfer += $output->writeFieldEnd(); + } if ($this->ire !== null) { $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); $xfer += $this->ire->write($output); @@ -14148,7 +14241,7 @@ class Airavata_updateGateway_result { } -class Airavata_getGateway_args { +class Airavata_updateGateway_args { static $_TSPEC; /** @@ -14159,6 +14252,10 @@ class Airavata_getGateway_args { * @var string */ public $gatewayId = null; + /** + * @var \Airavata\Model\Workspace\Gateway + */ + public $updatedGateway = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -14172,6 +14269,11 @@ class Airavata_getGateway_args { 'var' => 'gatewayId', 'type' => TType::STRING, ), + 3 => array( + 'var' => 'updatedGateway', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Gateway', + ), ); } if (is_array($vals)) { @@ -14181,11 +14283,14 @@ class Airavata_getGateway_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } + if (isset($vals['updatedGateway'])) { + $this->updatedGateway = $vals['updatedGateway']; + } } } public function getName() { - return 'Airavata_getGateway_args'; + return 'Airavata_updateGateway_args'; } public function read($input) @@ -14218,6 +14323,14 @@ class Airavata_getGateway_args { $xfer += $input->skip($ftype); } break; + case 3: + if ($ftype == TType::STRUCT) { + $this->updatedGateway = new \Airavata\Model\Workspace\Gateway(); + $xfer += $this->updatedGateway->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; default: $xfer += $input->skip($ftype); break; @@ -14230,7 +14343,7 @@ class Airavata_getGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getGateway_args'); + $xfer += $output->writeStructBegin('Airavata_updateGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -14244,6 +14357,14 @@ class Airavata_getGateway_args { $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } + if ($this->updatedGateway !== null) { + if (!is_object($this->updatedGateway)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('updatedGateway', TType::STRUCT, 3); + $xfer += $this->updatedGateway->write($output); + $xfer += $output->writeFieldEnd(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -14251,14 +14372,10 @@ class Airavata_getGateway_args { } -class Airavata_getGateway_result { +class Airavata_updateGateway_result { static $_TSPEC; /** - * @var \Airavata\Model\Workspace\Gateway - */ - public $success = null; - /** * @var \Airavata\API\Error\InvalidRequestException */ public $ire = null; @@ -14278,11 +14395,6 @@ class Airavata_getGateway_result { public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { self::$_TSPEC = array( - 0 => array( - 'var' => 'success', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Gateway', - ), 1 => array( 'var' => 'ire', 'type' => TType::STRUCT, @@ -14306,9 +14418,6 @@ class Airavata_getGateway_result { ); } if (is_array($vals)) { - if (isset($vals['success'])) { - $this->success = $vals['success']; - } if (isset($vals['ire'])) { $this->ire = $vals['ire']; } @@ -14325,7 +14434,7 @@ class Airavata_getGateway_result { } public function getName() { - return 'Airavata_getGateway_result'; + return 'Airavata_updateGateway_result'; } public function read($input) @@ -14343,14 +14452,6 @@ class Airavata_getGateway_result { } switch ($fid) { - case 0: - if ($ftype == TType::STRUCT) { - $this->success = new \Airavata\Model\Workspace\Gateway(); - $xfer += $this->success->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; case 1: if ($ftype == TType::STRUCT) { $this->ire = new \Airavata\API\Error\InvalidRequestException(); @@ -14395,15 +14496,7 @@ class Airavata_getGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getGateway_result'); - if ($this->success !== null) { - if (!is_object($this->success)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('success', TType::STRUCT, 0); - $xfer += $this->success->write($output); - $xfer += $output->writeFieldEnd(); - } + $xfer += $output->writeStructBegin('Airavata_updateGateway_result'); if ($this->ire !== null) { $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); $xfer += $this->ire->write($output); @@ -14431,7 +14524,7 @@ class Airavata_getGateway_result { } -class Airavata_deleteGateway_args { +class Airavata_getGateway_args { static $_TSPEC; /** @@ -14468,7 +14561,7 @@ class Airavata_deleteGateway_args { } public function getName() { - return 'Airavata_deleteGateway_args'; + return 'Airavata_getGateway_args'; } public function read($input) @@ -14513,7 +14606,7 @@ class Airavata_deleteGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteGateway_args'); + $xfer += $output->writeStructBegin('Airavata_getGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -14534,11 +14627,11 @@ class Airavata_deleteGateway_args { } -class Airavata_deleteGateway_result { +class Airavata_getGateway_result { static $_TSPEC; /** - * @var bool + * @var \Airavata\Model\Workspace\Gateway */ public $success = null; /** @@ -14563,7 +14656,8 @@ class Airavata_deleteGateway_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Gateway', ), 1 => array( 'var' => 'ire', @@ -14607,7 +14701,7 @@ class Airavata_deleteGateway_result { } public function getName() { - return 'Airavata_deleteGateway_result'; + return 'Airavata_getGateway_result'; } public function read($input) @@ -14626,8 +14720,9 @@ class Airavata_deleteGateway_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::STRUCT) { + $this->success = new \Airavata\Model\Workspace\Gateway(); + $xfer += $this->success->read($input); } else { $xfer += $input->skip($ftype); } @@ -14676,10 +14771,13 @@ class Airavata_deleteGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteGateway_result'); + $xfer += $output->writeStructBegin('Airavata_getGateway_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); - $xfer += $output->writeBool($this->success); + if (!is_object($this->success)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('success', TType::STRUCT, 0); + $xfer += $this->success->write($output); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -14709,13 +14807,17 @@ class Airavata_deleteGateway_result { } -class Airavata_getAllGateways_args { +class Airavata_deleteGateway_args { static $_TSPEC; /** * @var \Airavata\Model\Security\AuthzToken */ public $authzToken = null; + /** + * @var string + */ + public $gatewayId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -14725,17 +14827,24 @@ class Airavata_getAllGateways_args { 'type' => TType::STRUCT, 'class' => '\Airavata\Model\Security\AuthzToken', ), + 2 => array( + 'var' => 'gatewayId', + 'type' => TType::STRING, + ), ); } if (is_array($vals)) { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; + } } } public function getName() { - return 'Airavata_getAllGateways_args'; + return 'Airavata_deleteGateway_args'; } public function read($input) @@ -14761,6 +14870,13 @@ class Airavata_getAllGateways_args { $xfer += $input->skip($ftype); } break; + case 2: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); + } else { + $xfer += $input->skip($ftype); + } + break; default: $xfer += $input->skip($ftype); break; @@ -14773,7 +14889,7 @@ class Airavata_getAllGateways_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllGateways_args'); + $xfer += $output->writeStructBegin('Airavata_deleteGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -14782,6 +14898,11 @@ class Airavata_getAllGateways_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } + if ($this->gatewayId !== null) { + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); + $xfer += $output->writeString($this->gatewayId); + $xfer += $output->writeFieldEnd(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -14789,11 +14910,11 @@ class Airavata_getAllGateways_args { } -class Airavata_getAllGateways_result { +class Airavata_deleteGateway_result { static $_TSPEC; /** - * @var \Airavata\Model\Workspace\Gateway[] + * @var bool */ public $success = null; /** @@ -14818,12 +14939,7 @@ class Airavata_getAllGateways_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::LST, - 'etype' => TType::STRUCT, - 'elem' => array( - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Gateway', - ), + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -14867,7 +14983,7 @@ class Airavata_getAllGateways_result { } public function getName() { - return 'Airavata_getAllGateways_result'; + return 'Airavata_deleteGateway_result'; } public function read($input) @@ -14886,19 +15002,8 @@ class Airavata_getAllGateways_result { switch ($fid) { case 0: - if ($ftype == TType::LST) { - $this->success = array(); - $_size7 = 0; - $_etype10 = 0; - $xfer += $input->readListBegin($_etype10, $_size7); - for ($_i11 = 0; $_i11 < $_size7; ++$_i11) - { - $elem12 = null; - $elem12 = new \Airavata\Model\Workspace\Gateway(); - $xfer += $elem12->read($input); - $this->success []= $elem12; - } - $xfer += $input->readListEnd(); + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); } else { $xfer += $input->skip($ftype); } @@ -14947,22 +15052,10 @@ class Airavata_getAllGateways_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllGateways_result'); + $xfer += $output->writeStructBegin('Airavata_deleteGateway_result'); if ($this->success !== null) { - if (!is_array($this->success)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('success', TType::LST, 0); - { - $output->writeListBegin(TType::STRUCT, count($this->success)); - { - foreach ($this->success as $iter13) - { - $xfer += $iter13->write($output); - } - } - $output->writeListEnd(); - } + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -14992,17 +15085,13 @@ class Airavata_getAllGateways_result { } -class Airavata_isGatewayExist_args { +class Airavata_getAllGateways_args { static $_TSPEC; /** * @var \Airavata\Model\Security\AuthzToken */ public $authzToken = null; - /** - * @var string - */ - public $gatewayId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -15012,24 +15101,17 @@ class Airavata_isGatewayExist_args { 'type' => TType::STRUCT, 'class' => '\Airavata\Model\Security\AuthzToken', ), - 2 => array( - 'var' => 'gatewayId', - 'type' => TType::STRING, - ), ); } if (is_array($vals)) { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gatewayId'])) { - $this->gatewayId = $vals['gatewayId']; - } } } public function getName() { - return 'Airavata_isGatewayExist_args'; + return 'Airavata_getAllGateways_args'; } public function read($input) @@ -15055,13 +15137,6 @@ class Airavata_isGatewayExist_args { $xfer += $input->skip($ftype); } break; - case 2: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); - } else { - $xfer += $input->skip($ftype); - } - break; default: $xfer += $input->skip($ftype); break; @@ -15074,7 +15149,7 @@ class Airavata_isGatewayExist_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_isGatewayExist_args'); + $xfer += $output->writeStructBegin('Airavata_getAllGateways_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15083,11 +15158,6 @@ class Airavata_isGatewayExist_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->gatewayId !== null) { - $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); - $xfer += $output->writeString($this->gatewayId); - $xfer += $output->writeFieldEnd(); - } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -15095,11 +15165,11 @@ class Airavata_isGatewayExist_args { } -class Airavata_isGatewayExist_result { +class Airavata_getAllGateways_result { static $_TSPEC; /** - * @var bool + * @var \Airavata\Model\Workspace\Gateway[] */ public $success = null; /** @@ -15124,7 +15194,12 @@ class Airavata_isGatewayExist_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::LST, + 'etype' => TType::STRUCT, + 'elem' => array( + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Gateway', + ), ), 1 => array( 'var' => 'ire', @@ -15168,7 +15243,7 @@ class Airavata_isGatewayExist_result { } public function getName() { - return 'Airavata_isGatewayExist_result'; + return 'Airavata_getAllGateways_result'; } public function read($input) @@ -15187,8 +15262,19 @@ class Airavata_isGatewayExist_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::LST) { + $this->success = array(); + $_size7 = 0; + $_etype10 = 0; + $xfer += $input->readListBegin($_etype10, $_size7); + for ($_i11 = 0; $_i11 < $_size7; ++$_i11) + { + $elem12 = null; + $elem12 = new \Airavata\Model\Workspace\Gateway(); + $xfer += $elem12->read($input); + $this->success []= $elem12; + } + $xfer += $input->readListEnd(); } else { $xfer += $input->skip($ftype); } @@ -15237,10 +15323,22 @@ class Airavata_isGatewayExist_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_isGatewayExist_result'); + $xfer += $output->writeStructBegin('Airavata_getAllGateways_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); - $xfer += $output->writeBool($this->success); + if (!is_array($this->success)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('success', TType::LST, 0); + { + $output->writeListBegin(TType::STRUCT, count($this->success)); + { + foreach ($this->success as $iter13) + { + $xfer += $iter13->write($output); + } + } + $output->writeListEnd(); + } $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -15270,7 +15368,7 @@ class Airavata_isGatewayExist_result { } -class Airavata_createNotification_args { +class Airavata_isGatewayExist_args { static $_TSPEC; /** @@ -15278,9 +15376,9 @@ class Airavata_createNotification_args { */ public $authzToken = null; /** - * @var \Airavata\Model\Workspace\Notification + * @var string */ - public $notification = null; + public $gatewayId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -15291,9 +15389,8 @@ class Airavata_createNotification_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'notification', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Notification', + 'var' => 'gatewayId', + 'type' => TType::STRING, ), ); } @@ -15301,14 +15398,14 @@ class Airavata_createNotification_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['notification'])) { - $this->notification = $vals['notification']; + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; } } } public function getName() { - return 'Airavata_createNotification_args'; + return 'Airavata_isGatewayExist_args'; } public function read($input) @@ -15335,9 +15432,8 @@ class Airavata_createNotification_args { } break; case 2: - if ($ftype == TType::STRUCT) { - $this->notification = new \Airavata\Model\Workspace\Notification(); - $xfer += $this->notification->read($input); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); } else { $xfer += $input->skip($ftype); } @@ -15354,7 +15450,7 @@ class Airavata_createNotification_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_createNotification_args'); + $xfer += $output->writeStructBegin('Airavata_isGatewayExist_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15363,12 +15459,9 @@ class Airavata_createNotification_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->notification !== null) { - if (!is_object($this->notification)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('notification', TType::STRUCT, 2); - $xfer += $this->notification->write($output); + if ($this->gatewayId !== null) { + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); + $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -15378,11 +15471,11 @@ class Airavata_createNotification_args { } -class Airavata_createNotification_result { +class Airavata_isGatewayExist_result { static $_TSPEC; /** - * @var string + * @var bool */ public $success = null; /** @@ -15407,7 +15500,7 @@ class Airavata_createNotification_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::STRING, + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -15451,7 +15544,7 @@ class Airavata_createNotification_result { } public function getName() { - return 'Airavata_createNotification_result'; + return 'Airavata_isGatewayExist_result'; } public function read($input) @@ -15470,8 +15563,8 @@ class Airavata_createNotification_result { switch ($fid) { case 0: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->success); + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); } else { $xfer += $input->skip($ftype); } @@ -15520,10 +15613,10 @@ class Airavata_createNotification_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_createNotification_result'); + $xfer += $output->writeStructBegin('Airavata_isGatewayExist_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::STRING, 0); - $xfer += $output->writeString($this->success); + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -15553,7 +15646,7 @@ class Airavata_createNotification_result { } -class Airavata_updateNotification_args { +class Airavata_createNotification_args { static $_TSPEC; /** @@ -15591,7 +15684,7 @@ class Airavata_updateNotification_args { } public function getName() { - return 'Airavata_updateNotification_args'; + return 'Airavata_createNotification_args'; } public function read($input) @@ -15637,7 +15730,7 @@ class Airavata_updateNotification_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_updateNotification_args'); + $xfer += $output->writeStructBegin('Airavata_createNotification_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15661,11 +15754,11 @@ class Airavata_updateNotification_args { } -class Airavata_updateNotification_result { +class Airavata_createNotification_result { static $_TSPEC; /** - * @var bool + * @var string */ public $success = null; /** @@ -15690,7 +15783,7 @@ class Airavata_updateNotification_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::STRING, ), 1 => array( 'var' => 'ire', @@ -15734,7 +15827,7 @@ class Airavata_updateNotification_result { } public function getName() { - return 'Airavata_updateNotification_result'; + return 'Airavata_createNotification_result'; } public function read($input) @@ -15753,8 +15846,8 @@ class Airavata_updateNotification_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->success); } else { $xfer += $input->skip($ftype); } @@ -15803,10 +15896,10 @@ class Airavata_updateNotification_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_updateNotification_result'); + $xfer += $output->writeStructBegin('Airavata_createNotification_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); - $xfer += $output->writeBool($this->success); + $xfer += $output->writeFieldBegin('success', TType::STRING, 0); + $xfer += $output->writeString($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -15836,7 +15929,7 @@ class Airavata_updateNotification_result { } -class Airavata_deleteNotification_args { +class Airavata_updateNotification_args { static $_TSPEC; /** @@ -15844,13 +15937,9 @@ class Airavata_deleteNotification_args { */ public $authzToken = null; /** - * @var string - */ - public $gatewayId = null; - /** - * @var string + * @var \Airavata\Model\Workspace\Notification */ - public $notificationId = null; + public $notification = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -15861,12 +15950,9 @@ class Airavata_deleteNotification_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'gatewayId', - 'type' => TType::STRING, - ), - 3 => array( - 'var' => 'notificationId', - 'type' => TType::STRING, + 'var' => 'notification', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Notification', ), ); } @@ -15874,17 +15960,14 @@ class Airavata_deleteNotification_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gatewayId'])) { - $this->gatewayId = $vals['gatewayId']; - } - if (isset($vals['notificationId'])) { - $this->notificationId = $vals['notificationId']; + if (isset($vals['notification'])) { + $this->notification = $vals['notification']; } } } public function getName() { - return 'Airavata_deleteNotification_args'; + return 'Airavata_updateNotification_args'; } public function read($input) @@ -15911,15 +15994,9 @@ class Airavata_deleteNotification_args { } break; case 2: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); - } else { - $xfer += $input->skip($ftype); - } - break; - case 3: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->notificationId); + if ($ftype == TType::STRUCT) { + $this->notification = new \Airavata\Model\Workspace\Notification(); + $xfer += $this->notification->read($input); } else { $xfer += $input->skip($ftype); } @@ -15936,7 +16013,7 @@ class Airavata_deleteNotification_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteNotification_args'); + $xfer += $output->writeStructBegin('Airavata_updateNotification_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15945,14 +16022,12 @@ class Airavata_deleteNotification_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->gatewayId !== null) { - $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); - $xfer += $output->writeString($this->gatewayId); - $xfer += $output->writeFieldEnd(); - } - if ($this->notificationId !== null) { - $xfer += $output->writeFieldBegin('notificationId', TType::STRING, 3); - $xfer += $output->writeString($this->notificationId); + if ($this->notification !== null) { + if (!is_object($this->notification)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('notification', TType::STRUCT, 2); + $xfer += $this->notification->write($output); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -15962,7 +16037,7 @@ class Airavata_deleteNotification_args { } -class Airavata_deleteNotification_result { +class Airavata_updateNotification_result { static $_TSPEC; /** @@ -16035,7 +16110,7 @@ class Airavata_deleteNotification_result { } public function getName() { - return 'Airavata_deleteNotification_result'; + return 'Airavata_updateNotification_result'; } public function read($input) @@ -16104,7 +16179,7 @@ class Airavata_deleteNotification_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteNotification_result'); + $xfer += $output->writeStructBegin('Airavata_updateNotification_result'); if ($this->success !== null) { $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); $xfer += $output->writeBool($this->success); @@ -16137,7 +16212,7 @@ class Airavata_deleteNotification_result { } -class Airavata_getNotification_args { +class Airavata_deleteNotification_args { static $_TSPEC; /** @@ -16185,7 +16260,7 @@ class Airavata_getNotification_args { } public function getName() { - return 'Airavata_getNotification_args'; + return 'Airavata_deleteNotification_args'; } public function read($input) @@ -16237,7 +16312,7 @@ class Airavata_getNotification_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getNotification_args'); + $xfer += $output->writeStructBegin('Airavata_deleteNotification_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -16263,11 +16338,11 @@ class Airavata_getNotification_args { } -class Airavata_getNotification_result { +class Airavata_deleteNotification_result { static $_TSPEC; /** - * @var \Airavata\Model\Workspace\Notification + * @var bool */ public $success = null; /** @@ -16292,8 +16367,7 @@ class Airavata_getNotification_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Notification', + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -16337,7 +16411,7 @@ class Airavata_getNotification_result { } public function getName() { - return 'Airavata_getNotification_result'; + return 'Airavata_deleteNotification_result'; } public function read($input) @@ -16356,9 +16430,8 @@ class Airavata_getNotification_result { switch ($fid) { case 0: - if ($ftype == TType::STRUCT) { - $this->success = new \Airavata\Model\Workspace\Notification(); - $xfer += $this->success->read($input); + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); } else { $xfer += $input->skip($ftype); } @@ -16407,13 +16480,10 @@ class Airavata_getNotification_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getNotification_result'); + $xfer += $output->writeStructBegin('Airavata_deleteNotification_result'); if ($this->success !== null) { - if (!is_object($this->success)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('success', TType::STRUCT, 0); - $xfer += $this->success->write($output); + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -16443,7 +16513,7 @@ class Airavata_getNotification_result { } -class Airavata_getAllNotifications_args { +class Airavata_getNotification_args { static $_TSPEC; /** @@ -16454,6 +16524,10 @@ class Airavata_getAllNotifications_args { * @var string */ public $gatewayId = null; + /** + * @var string + */ + public $notificationId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -16467,6 +16541,10 @@ class Airavata_getAllNotifications_args { 'var' => 'gatewayId', 'type' => TType::STRING, ), + 3 => array( + 'var' => 'notificationId', + 'type' => TType::STRING, + ), ); } if (is_array($vals)) { @@ -16476,11 +16554,14 @@ class Airavata_getAllNotifications_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } + if (isset($vals['notificationId'])) { + $this->notificationId = $vals['notificationId']; + } } } public function getName() { - return 'Airavata_getAllNotifications_args'; + return 'Airavata_getNotification_args'; } public function read($input) @@ -16513,6 +16594,13 @@ class Airavata_getAllNotifications_args { $xfer += $input->skip($ftype); } break; + case 3: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->notificationId); + } else { + $xfer += $input->skip($ftype); + } + break; default: $xfer += $input->skip($ftype); break; @@ -16525,7 +16613,7 @@ class Airavata_getAllNotifications_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllNotifications_args'); + $xfer += $output->writeStructBegin('Airavata_getNotification_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -16539,6 +16627,11 @@ class Airavata_getAllNotifications_args { $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } + if ($this->notificationId !== null) { + $xfer += $output->writeFieldBegin('notificationId', TType::STRING, 3); + $xfer += $output->writeString($this->notificationId); + $xfer += $output->writeFieldEnd(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -16546,11 +16639,11 @@ class Airavata_getAllNotifications_args { } -class Airavata_getAllNotifications_result { +class Airavata_getNotification_result { static $_TSPEC; /** - * @var \Airavata\Model\Workspace\Notification[] + * @var \Airavata\Model\Workspace\Notification */ public $success = null; /** @@ -16575,12 +16668,8 @@ class Airavata_getAllNotifications_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::LST, - 'etype' => TType::STRUCT, - 'elem' => array( - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Notification', - ), + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Notification', ), 1 => array( 'var' => 'ire', @@ -16624,7 +16713,7 @@ class Airavata_getAllNotifications_result { } public function getName() { - return 'Airavata_getAllNotifications_result'; + return 'Airavata_getNotification_result'; } public function read($input) @@ -16643,19 +16732,9 @@ class Airavata_getAllNotifications_result { switch ($fid) { case 0: - if ($ftype == TType::LST) { - $this->success = array(); - $_size14 = 0; - $_etype17 = 0; - $xfer += $input->readListBegin($_etype17, $_size14); - for ($_i18 = 0; $_i18 < $_size14; ++$_i18) - { - $elem19 = null; - $elem19 = new \Airavata\Model\Workspace\Notification(); - $xfer += $elem19->read($input); - $this->success []= $elem19; - } - $xfer += $input->readListEnd(); + if ($ftype == TType::STRUCT) { + $this->success = new \Airavata\Model\Workspace\Notification(); + $xfer += $this->success->read($input); } else { $xfer += $input->skip($ftype); } @@ -16704,22 +16783,13 @@ class Airavata_getAllNotifications_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllNotifications_result'); + $xfer += $output->writeStructBegin('Airavata_getNotification_result'); if ($this->success !== null) { - if (!is_array($this->success)) { + if (!is_object($this->success)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); } - $xfer += $output->writeFieldBegin('success', TType::LST, 0); - { - $output->writeListBegin(TType::STRUCT, count($this->success)); - { - foreach ($this->success as $iter20) - { - $xfer += $iter20->write($output); - } - } - $output->writeListEnd(); - } + $xfer += $output->writeFieldBegin('success', TType::STRUCT, 0); + $xfer += $this->success->write($output); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -16749,7 +16819,7 @@ class Airavata_getAllNotifications_result { } -class Airavata_generateAndRegisterSSHKeys_args { +class Airavata_getAllNotifications_args { static $_TSPEC; /** @@ -16760,10 +16830,6 @@ class Airavata_generateAndRegisterSSHKeys_args { * @var string */ public $gatewayId = null; - /** - * @var string - */ - public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -16777,10 +16843,6 @@ class Airavata_generateAndRegisterSSHKeys_args { 'var' => 'gatewayId', 'type' => TType::STRING, ), - 3 => array( - 'var' => 'userName', - 'type' => TType::STRING, - ), ); } if (is_array($vals)) { @@ -16790,14 +16852,11 @@ class Airavata_generateAndRegisterSSHKeys_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } - if (isset($vals['userName'])) { - $this->userName = $vals['userName']; - } } } public function getName() { - return 'Airavata_generateAndRegisterSSHKeys_args'; + return 'Airavata_getAllNotifications_args'; } public function read($input) @@ -16830,13 +16889,6 @@ class Airavata_generateAndRegisterSSHKeys_args { $xfer += $input->skip($ftype); } break; - case 3: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->userName); - } else { - $xfer += $input->skip($ftype); - } - break; default: $xfer += $input->skip($ftype); break; @@ -16849,7 +16901,7 @@ class Airavata_generateAndRegisterSSHKeys_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_generateAndRegisterSSHKeys_args'); + $xfer += $output->writeStructBegin('Airavata_getAllNotifications_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -16863,11 +16915,6 @@ class Airavata_generateAndRegisterSSHKeys_args { $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } - if ($this->userName !== null) { - $xfer += $output->writeFieldBegin('userName', TType::STRING, 3); - $xfer += $output->writeString($this->userName); - $xfer += $output->writeFieldEnd(); - } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -16875,11 +16922,11 @@ class Airavata_generateAndRegisterSSHKeys_args { } -class Airavata_generateAndRegisterSSHKeys_result { +class Airavata_getAllNotifications_result { static $_TSPEC; /** - * @var string + * @var \Airavata\Model\Workspace\Notification[] */ public $success = null; /** @@ -16894,13 +16941,22 @@ class Airavata_generateAndRegisterSSHKeys_result { * @var \Airavata\API\Error\AiravataSystemException */ public $ase = null; + /** + * @var \Airavata\API\Error\AuthorizationException + */ + public $ae = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::STRING, + 'type' => TType::LST, + 'etype' => TType::STRUCT, + 'elem' => array( + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Notification', + ), ), 1 => array( 'var' => 'ire', @@ -16917,6 +16973,11 @@ class Airavata_generateAndRegisterSSHKeys_result { 'type' => TType::STRUCT, 'class' => '\Airavata\API\Error\AiravataSystemException', ), + 4 => array( + 'var' => 'ae', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AuthorizationException', + ), ); } if (is_array($vals)) { @@ -16932,11 +16993,14 @@ class Airavata_generateAndRegisterSSHKeys_result { if (isset($vals['ase'])) { $this->ase = $vals['ase']; } + if (isset($vals['ae'])) { + $this->ae = $vals['ae']; + } } } public function getName() { - return 'Airavata_generateAndRegisterSSHKeys_result'; + return 'Airavata_getAllNotifications_result'; } public function read($input) @@ -16955,8 +17019,19 @@ class Airavata_generateAndRegisterSSHKeys_result { switch ($fid) { case 0: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->success); + if ($ftype == TType::LST) { + $this->success = array(); + $_size14 = 0; + $_etype17 = 0; + $xfer += $input->readListBegin($_etype17, $_size14); + for ($_i18 = 0; $_i18 < $_size14; ++$_i18) + { + $elem19 = null; + $elem19 = new \Airavata\Model\Workspace\Notification(); + $xfer += $elem19->read($input); + $this->success []= $elem19; + } + $xfer += $input->readListEnd(); } else { $xfer += $input->skip($ftype); } @@ -16985,6 +17060,14 @@ class Airavata_generateAndRegisterSSHKeys_result { $xfer += $input->skip($ftype); } break; + case 4: + if ($ftype == TType::STRUCT) { + $this->ae = new \Airavata\API\Error\AuthorizationException(); + $xfer += $this->ae->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; default: $xfer += $input->skip($ftype); break; @@ -16997,10 +17080,22 @@ class Airavata_generateAndRegis
<TRUNCATED>
