http://git-wip-us.apache.org/repos/asf/airavata/blob/edfbbfe0/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 cebfb90..946aaa7 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 @@ -3366,6 +3366,45 @@ interface AiravataIf { * @throws \Airavata\API\Error\AuthorizationException */ public function getChildDataProducts(\Airavata\Model\Security\AuthzToken $authzToken, $productUri); + /** + * Group Manager and Data Sharing Related API methods + * + * + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $resourceId + * @param int $resourceType + * @param array $userPermissionList + * @return bool + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function shareResourceWithUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, array $userPermissionList); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $resourceId + * @param int $resourceType + * @param array $userPermissionList + * @return bool + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function revokeSharingOfResourceFromUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, array $userPermissionList); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $resourceId + * @param int $resourceType + * @param int $permissionType + * @return string[] + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function getAllAccessibleUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, $permissionType); } class AiravataClient implements \Airavata\API\AiravataIf { @@ -12481,280 +12520,215 @@ class AiravataClient implements \Airavata\API\AiravataIf { throw new \Exception("getChildDataProducts failed: unknown result"); } -} - -// HELPER FUNCTIONS AND STRUCTURES + public function shareResourceWithUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, array $userPermissionList) + { + $this->send_shareResourceWithUsers($authzToken, $resourceId, $resourceType, $userPermissionList); + return $this->recv_shareResourceWithUsers(); + } -class Airavata_getAPIVersion_args { - static $_TSPEC; + public function send_shareResourceWithUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, array $userPermissionList) + { + $args = new \Airavata\API\Airavata_shareResourceWithUsers_args(); + $args->authzToken = $authzToken; + $args->resourceId = $resourceId; + $args->resourceType = $resourceType; + $args->userPermissionList = $userPermissionList; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'shareResourceWithUsers', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('shareResourceWithUsers', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } - /** - * @var \Airavata\Model\Security\AuthzToken - */ - public $authzToken = null; + public function recv_shareResourceWithUsers() + { + $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_shareResourceWithUsers_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; - public function __construct($vals=null) { - if (!isset(self::$_TSPEC)) { - self::$_TSPEC = array( - 1 => array( - 'var' => 'authzToken', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Security\AuthzToken', - ), - ); - } - if (is_array($vals)) { - if (isset($vals['authzToken'])) { - $this->authzToken = $vals['authzToken']; + $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_shareResourceWithUsers_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("shareResourceWithUsers failed: unknown result"); } - public function getName() { - return 'Airavata_getAPIVersion_args'; + public function revokeSharingOfResourceFromUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, array $userPermissionList) + { + $this->send_revokeSharingOfResourceFromUsers($authzToken, $resourceId, $resourceType, $userPermissionList); + return $this->recv_revokeSharingOfResourceFromUsers(); } - public function read($input) + public function send_revokeSharingOfResourceFromUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, array $userPermissionList) { - $xfer = 0; - $fname = null; - $ftype = 0; - $fid = 0; - $xfer += $input->readStructBegin($fname); - while (true) + $args = new \Airavata\API\Airavata_revokeSharingOfResourceFromUsers_args(); + $args->authzToken = $authzToken; + $args->resourceId = $resourceId; + $args->resourceType = $resourceType; + $args->userPermissionList = $userPermissionList; + $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_, 'revokeSharingOfResourceFromUsers', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); } - $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); - } - $xfer += $output->writeFieldBegin('authzToken', TType::STRUCT, 1); - $xfer += $this->authzToken->write($output); - $xfer += $output->writeFieldEnd(); + else + { + $this->output_->writeMessageBegin('revokeSharingOfResourceFromUsers', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); } - $xfer += $output->writeFieldStop(); - $xfer += $output->writeStructEnd(); - return $xfer; } -} - -class Airavata_getAPIVersion_result { - static $_TSPEC; - - /** - * @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_revokeSharingOfResourceFromUsers() + { + $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_revokeSharingOfResourceFromUsers_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_revokeSharingOfResourceFromUsers_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("revokeSharingOfResourceFromUsers failed: unknown result"); } - public function getName() { - return 'Airavata_getAPIVersion_result'; + public function getAllAccessibleUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, $permissionType) + { + $this->send_getAllAccessibleUsers($authzToken, $resourceId, $resourceType, $permissionType); + return $this->recv_getAllAccessibleUsers(); } - public function read($input) + public function send_getAllAccessibleUsers(\Airavata\Model\Security\AuthzToken $authzToken, $resourceId, $resourceType, $permissionType) { - $xfer = 0; - $fname = null; - $ftype = 0; - $fid = 0; - $xfer += $input->readStructBegin($fname); - while (true) + $args = new \Airavata\API\Airavata_getAllAccessibleUsers_args(); + $args->authzToken = $authzToken; + $args->resourceId = $resourceId; + $args->resourceType = $resourceType; + $args->permissionType = $permissionType; + $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_, 'getAllAccessibleUsers', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('getAllAccessibleUsers', 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_getAllAccessibleUsers() + { + $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_getAllAccessibleUsers_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_getAllAccessibleUsers_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("getAllAccessibleUsers 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)) { @@ -12764,31 +12738,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) @@ -12814,20 +12774,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; @@ -12840,7 +12786,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); @@ -12849,16 +12795,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; @@ -12866,11 +12802,11 @@ class Airavata_isUserExists_args { } -class Airavata_isUserExists_result { +class Airavata_getAPIVersion_result { static $_TSPEC; /** - * @var bool + * @var string */ public $success = null; /** @@ -12895,7 +12831,7 @@ class Airavata_isUserExists_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::STRING, ), 1 => array( 'var' => 'ire', @@ -12939,7 +12875,7 @@ class Airavata_isUserExists_result { } public function getName() { - return 'Airavata_isUserExists_result'; + return 'Airavata_getAPIVersion_result'; } public function read($input) @@ -12958,8 +12894,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); } @@ -13008,10 +12944,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) { @@ -13041,7 +12977,7 @@ class Airavata_isUserExists_result { } -class Airavata_addGateway_args { +class Airavata_isUserExists_args { static $_TSPEC; /** @@ -13049,9 +12985,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)) { @@ -13062,9 +13002,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, ), ); } @@ -13072,14 +13015,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) @@ -13106,9 +13052,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); } @@ -13125,7 +13077,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); @@ -13134,12 +13086,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(); @@ -13149,11 +13103,11 @@ class Airavata_addGateway_args { } -class Airavata_addGateway_result { +class Airavata_isUserExists_result { static $_TSPEC; /** - * @var string + * @var bool */ public $success = null; /** @@ -13178,7 +13132,7 @@ class Airavata_addGateway_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::STRING, + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -13222,7 +13176,7 @@ class Airavata_addGateway_result { } public function getName() { - return 'Airavata_addGateway_result'; + return 'Airavata_isUserExists_result'; } public function read($input) @@ -13241,8 +13195,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); } @@ -13291,10 +13245,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) { @@ -13324,7 +13278,7 @@ class Airavata_addGateway_result { } -class Airavata_getAllUsersInGateway_args { +class Airavata_addGateway_args { static $_TSPEC; /** @@ -13332,9 +13286,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)) { @@ -13345,8 +13299,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', ), ); } @@ -13354,14 +13309,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) @@ -13388,8 +13343,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); } @@ -13406,7 +13362,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); @@ -13415,9 +13371,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(); @@ -13427,11 +13386,11 @@ class Airavata_getAllUsersInGateway_args { } -class Airavata_getAllUsersInGateway_result { +class Airavata_addGateway_result { static $_TSPEC; /** - * @var string[] + * @var string */ public $success = null; /** @@ -13456,11 +13415,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', @@ -13504,7 +13459,7 @@ class Airavata_getAllUsersInGateway_result { } public function getName() { - return 'Airavata_getAllUsersInGateway_result'; + return 'Airavata_addGateway_result'; } public function read($input) @@ -13523,18 +13478,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); } @@ -13583,22 +13528,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) { @@ -13628,7 +13561,7 @@ class Airavata_getAllUsersInGateway_result { } -class Airavata_updateGateway_args { +class Airavata_getAllUsersInGateway_args { static $_TSPEC; /** @@ -13639,10 +13572,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)) { @@ -13656,11 +13585,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)) { @@ -13670,14 +13594,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) @@ -13710,14 +13631,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; @@ -13730,7 +13643,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); @@ -13744,14 +13657,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; @@ -13759,10 +13664,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; @@ -13782,6 +13691,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, @@ -13805,6 +13722,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']; } @@ -13821,7 +13741,7 @@ class Airavata_updateGateway_result { } public function getName() { - return 'Airavata_updateGateway_result'; + return 'Airavata_getAllUsersInGateway_result'; } public function read($input) @@ -13839,6 +13759,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(); @@ -13883,7 +13820,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); @@ -13911,7 +13865,7 @@ class Airavata_updateGateway_result { } -class Airavata_getGateway_args { +class Airavata_updateGateway_args { static $_TSPEC; /** @@ -13922,6 +13876,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)) { @@ -13935,6 +13893,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)) { @@ -13944,11 +13907,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) @@ -13981,6 +13947,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; @@ -13993,7 +13967,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); @@ -14007,6 +13981,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; @@ -14014,14 +13996,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; @@ -14041,11 +14019,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, @@ -14069,9 +14042,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']; } @@ -14088,7 +14058,7 @@ class Airavata_getGateway_result { } public function getName() { - return 'Airavata_getGateway_result'; + return 'Airavata_updateGateway_result'; } public function read($input) @@ -14106,14 +14076,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(); @@ -14158,15 +14120,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); @@ -14194,7 +14148,7 @@ class Airavata_getGateway_result { } -class Airavata_deleteGateway_args { +class Airavata_getGateway_args { static $_TSPEC; /** @@ -14231,7 +14185,7 @@ class Airavata_deleteGateway_args { } public function getName() { - return 'Airavata_deleteGateway_args'; + return 'Airavata_getGateway_args'; } public function read($input) @@ -14276,7 +14230,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); @@ -14297,11 +14251,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; /** @@ -14326,7 +14280,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', @@ -14370,7 +14325,7 @@ class Airavata_deleteGateway_result { } public function getName() { - return 'Airavata_deleteGateway_result'; + return 'Airavata_getGateway_result'; } public function read($input) @@ -14389,8 +14344,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); } @@ -14439,10 +14395,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) { @@ -14472,13 +14431,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)) { @@ -14488,17 +14451,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) @@ -14524,6 +14494,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; @@ -14536,7 +14513,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); @@ -14545,6 +14522,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; @@ -14552,11 +14534,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; /** @@ -14581,12 +14563,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', @@ -14630,7 +14607,7 @@ class Airavata_getAllGateways_result { } public function getName() { - return 'Airavata_getAllGateways_result'; + return 'Airavata_deleteGateway_result'; } public function read($input) @@ -14649,19 +14626,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); } @@ -14710,22 +14676,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) { @@ -14755,17 +14709,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)) { @@ -14775,24 +14725,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) @@ -14818,13 +14761,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; @@ -14837,7 +14773,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); @@ -14846,11 +14782,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; @@ -14858,11 +14789,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; /** @@ -14887,7 +14818,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', @@ -14931,7 +14867,7 @@ class Airavata_isGatewayExist_result { } public function getName() { - return 'Airavata_isGatewayExist_result'; + return 'Airavata_getAllGateways_result'; } public function read($input) @@ -14950,8 +14886,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); } @@ -15000,10 +14947,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) { @@ -15033,7 +14992,7 @@ class Airavata_isGatewayExist_result { } -class Airavata_createNotification_args { +class Airavata_isGatewayExist_args { static $_TSPEC; /** @@ -15041,9 +15000,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)) { @@ -15054,9 +15013,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, ), ); } @@ -15064,14 +15022,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) @@ -15098,9 +15056,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); } @@ -15117,7 +15074,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); @@ -15126,12 +15083,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(); @@ -15141,11 +15095,11 @@ class Airavata_createNotification_args { } -class Airavata_createNotification_result { +class Airavata_isGatewayExist_result { static $_TSPEC; /** - * @var string + * @var bool */ public $success = null; /** @@ -15170,7 +15124,7 @@ class Airavata_createNotification_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::STRING, + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -15214,7 +15168,7 @@ class Airavata_createNotification_result { } public function getName() { - return 'Airavata_createNotification_result'; + return 'Airavata_isGatewayExist_result'; } public function read($input) @@ -15233,8 +15187,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); } @@ -15283,10 +15237,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) { @@ -15316,7 +15270,7 @@ class Airavata_createNotification_result { } -class Airavata_updateNotification_args { +class Airavata_createNotification_args { static $_TSPEC; /** @@ -15354,7 +15308,7 @@ class Airavata_updateNotification_args { } public function getName() { - return 'Airavata_updateNotification_args'; + return 'Airavata_createNotification_args'; } public function read($input) @@ -15400,7 +15354,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); @@ -15424,11 +15378,11 @@ class Airavata_updateNotification_args { } -class Airavata_updateNotification_result { +class Airavata_createNotification_result { static $_TSPEC; /** - * @var bool + * @var string */ public $success = null; /** @@ -15453,7 +15407,7 @@ class Airavata_updateNotification_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::STRING, ), 1 => array( 'var' => 'ire', @@ -15497,7 +15451,7 @@ class Airavata_updateNotification_result { } public function getName() { - return 'Airavata_updateNotification_result'; + return 'Airavata_createNotification_result'; } public function read($input) @@ -15516,8 +15470,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); } @@ -15566,10 +15520,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) { @@ -15599,7 +15553,7 @@ class Airavata_updateNotification_result { } -class Airavata_deleteNotification_args { +class Airavata_updateNotification_args { static $_TSPEC; /** @@ -15607,13 +15561,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)) { @@ -15624,12 +15574,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', ), ); } @@ -15637,17 +15584,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) @@ -15674,15 +15618,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); } @@ -15699,7 +15637,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); @@ -15708,14 +15646,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(); @@ -15725,7 +15661,7 @@ class Airavata_deleteNotification_args { } -class Airavata_deleteNotification_result { +class Airavata_updateNotification_result { static $_TSPEC; /** @@ -15798,7 +15734,7 @@ class Airavata_deleteNotification_result { } public function getName() { - return 'Airavata_deleteNotification_result'; + return 'Airavata_updateNotification_result'; } public function read($input) @@ -15867,7 +15803,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); @@ -15900,7 +15836,7 @@ class Airavata_deleteNotification_result { } -class Airavata_getNotification_args { +class Airavata_deleteNotification_args { static $_TSPEC; /** @@ -15948,7 +15884,7 @@ class Airavata_getNotification_args { } public function getName() { - return 'Airavata_getNotification_args'; + return 'Airavata_deleteNotification_args'; } public function read($input) @@ -16000,7 +15936,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); @@ -16026,11 +15962,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; /** @@ -16055,8 +15991,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', @@ -16100,7 +16035,7 @@ class Airavata_getNotification_result { } public function getName() { - return 'Airavata_getNotification_result'; + return 'Airavata_deleteNotification_result'; } public function read($input) @@ -16119,9 +16054,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); } @@ -16170,13 +16104,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) { @@ -16206,7 +16137,7 @@ class Airavata_getNotification_result { } -class Airavata_getAllNotifications_args { +class Airavata_getNotification_args { static $_TSPEC; /** @@ -16217,6 +16148,10 @@ class Airavata_getAllNotifications_args { * @var string */ public $gatewayId = null; + /** + * @var string + */ + public $notificationId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -16230,6 +16165,10 @@ class Airavata_getAllNotifications_args { 'var' => 'gatewayId', 'type' => TType::STRING, ), + 3 => array( + 'var' => 'notificationId', + 'type' => TType::STRING, + ), ); } if (is_array($vals)) { @@ -16239,11 +16178,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) @@ -16276,6 +16218,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; @@ -16288,7 +16237,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); @@ -16302,6 +16251,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; @@ -16309,11 +16263,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; /** @@ -16338,12 +16292,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', @@ -16387,7 +16337,7 @@ class Airavata_getAllNotifications_result { } public function getName() { - return 'Airavata_getAllNotifications_result'; + return 'Airavata_getNotification_result'; } public function read($input) @@ -16406,19 +16356,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); } @@ -16467,22 +16407,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) { @@ -16512,7 +16443,7 @@ class Airavata_getAllNotifications_result { } -class Airavata_generateAndRegisterSSHKeys_args { +class Airavata_getAllNotifications_args { static $_TSPEC; /** @@ -16523,10 +16454,6 @@ class Airavata_generateAndRegisterSSHKeys_args { * @var string */ public $gatewayId = null; - /** - * @var string - */ - public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -16540,10 +16467,6 @@ class Airavata_generateAndRegisterSSHKeys_args { 'var' => 'gatewayId', 'type' => TType::STRING, ), - 3 => array( - 'var' => 'userName', - 'type' => TType::STRING, - ), ); } if (is_array($vals)) { @@ -16553,14 +16476,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) @@ -16593,13 +16513,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; @@ -16612,7 +16525,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); @@ -16626,11 +16539,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; @@ -16638,11 +16546,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; /** @@ -16657,13 +16565,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', @@ -16680,6 +16597,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)) { @@ -16695,11 +16617,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) @@ -16718,8 +16643,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); } @@ -16748,6 +16684,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; @@ -16760,10 +16704,22 @@ class Airavata_generateAndRegisterSSHKeys_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_generateAndRegisterSSHKeys_result'); + $xfer += $output->writeStructBegin('Airavata_getAllNotifications_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::STRING, 0); - $xfer += $output->writeString($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 $iter20) + { + $xfer += $iter20->write($output); + } + } + $output->writeListEnd(); + } $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -16781,6 +16737,11 @@ class Airavata_generateAndRegisterSSHKeys_result { $xfer += $this->ase->write($output); $xfer += $output->writeFieldEnd(); } + if ($this->ae !== null) { + $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 4); + $xfer += $this->ae->write($output); + $xfer += $output->writeFieldEnd(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -16788,7 +16749,7 @@ class Airavata_generateAndRegisterSSHKeys_result { } -class Airavata_registerPwdCredential_args { +class Airavata_generateAndRegisterSSHKeys_args { static $_TSPEC; /** @@ -16802,19 +16763,7 @@ class Airavata_registerPwdCredential_args { /** * @var string */ - public $portalUserName = null; - /** - * @var string - */ - public $loginUserName = null; - /** - * @var string - */ - public $password = null; - /** - * @var string - */ - public $description = null; + public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -16829,19 +16778,7 @@ class Airavata_registerPwdCredential_args { 'type' => TType::STRING, ), 3 => array( - 'var' => 'portalUserName', - 'type' => TType::STRING, - ), - 4 => array( - 'var' => 'loginUserName', - 'type' => TType::STRING, - ), - 5 => array( - 'var' => 'password', - 'type' => TType::STRING, - ), - 6 => array( - 'var' => 'description', + 'var' => 'userName', 'type' => TType::STRING, ), ); @@ -16853,23 +16790,14 @@ class Airavata_registerPwdCredential_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } - if (isset($vals['portalUserName'])) { - $this->portalUserName = $vals['portalUserName']; - } - if (isset($vals['loginUserName'])) { - $this->loginUserName = $vals['loginUserName']; - } - if (isset($vals['password'])) { - $this->password = $vals['password']; - } - if (isset($vals['description'])) { - $this->description = $vals['description']; + if (isset($vals['userName'])) { + $this->userName = $vals['userName']; } } } public function getName() { - return 'Airavata_registerPwdCredential_args'; + return 'Airavata_generateAndRegisterSSHKeys_args'; } public function read($input) @@ -16904,28 +16832,7 @@ class Airavata_registerPwdCredential_args { break; case 3: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->portalUserName); - } else { - $xfer += $input->skip($ftype); - } - break; - case 4: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->loginUserName); - } else { - $xfer += $input->skip($ftype); - } - break; - case 5: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->password); - } else { - $xfer += $input->skip($ftype); - } - break; - case 6: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->description); + $xfer += $input->readString($this->userName); } else { $xfer += $input->skip($ftype); } @@ -16942,7 +1
<TRUNCATED>
