Repository: airavata Updated Branches: refs/heads/master b7e914ee3 -> 57164c7a9
http://git-wip-us.apache.org/repos/asf/airavata/blob/57164c7a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/Workspace/Types.php ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/Workspace/Types.php b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/Workspace/Types.php index 458f6ea..4523e3d 100644 --- a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/Workspace/Types.php +++ b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/Workspace/Types.php @@ -121,7 +121,7 @@ class Project { /** * @var string */ - public $projectID = null; + public $projectID = "DO_NOT_SET_AT_CLIENTS"; /** * @var string */ http://git-wip-us.apache.org/repos/asf/airavata/blob/57164c7a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/job/Types.php ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/job/Types.php b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/job/Types.php new file mode 100644 index 0000000..8869cdb --- /dev/null +++ b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/Model/job/Types.php @@ -0,0 +1,261 @@ +<?php +namespace Airavata\Model\job; + +/** + * Autogenerated by Thrift Compiler (0.9.2) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +use Thrift\Base\TBase; +use Thrift\Type\TType; +use Thrift\Type\TMessageType; +use Thrift\Exception\TException; +use Thrift\Exception\TProtocolException; +use Thrift\Protocol\TProtocol; +use Thrift\Protocol\TBinaryProtocolAccelerated; +use Thrift\Exception\TApplicationException; + + +class JobModel { + static $_TSPEC; + + /** + * @var string + */ + public $jobId = null; + /** + * @var string + */ + public $taskId = null; + /** + * @var string + */ + public $jobDescription = null; + /** + * @var int + */ + public $creationTime = null; + /** + * @var \Airavata\Model\Status\JobStatus + */ + public $jobStatus = null; + /** + * @var string + */ + public $computeResourceConsumed = null; + /** + * @var string + */ + public $jobName = null; + /** + * @var string + */ + public $workingDir = null; + + public function __construct($vals=null) { + if (!isset(self::$_TSPEC)) { + self::$_TSPEC = array( + 1 => array( + 'var' => 'jobId', + 'type' => TType::STRING, + ), + 2 => array( + 'var' => 'taskId', + 'type' => TType::STRING, + ), + 3 => array( + 'var' => 'jobDescription', + 'type' => TType::STRING, + ), + 4 => array( + 'var' => 'creationTime', + 'type' => TType::I64, + ), + 5 => array( + 'var' => 'jobStatus', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Status\JobStatus', + ), + 6 => array( + 'var' => 'computeResourceConsumed', + 'type' => TType::STRING, + ), + 7 => array( + 'var' => 'jobName', + 'type' => TType::STRING, + ), + 8 => array( + 'var' => 'workingDir', + 'type' => TType::STRING, + ), + ); + } + if (is_array($vals)) { + if (isset($vals['jobId'])) { + $this->jobId = $vals['jobId']; + } + if (isset($vals['taskId'])) { + $this->taskId = $vals['taskId']; + } + if (isset($vals['jobDescription'])) { + $this->jobDescription = $vals['jobDescription']; + } + if (isset($vals['creationTime'])) { + $this->creationTime = $vals['creationTime']; + } + if (isset($vals['jobStatus'])) { + $this->jobStatus = $vals['jobStatus']; + } + if (isset($vals['computeResourceConsumed'])) { + $this->computeResourceConsumed = $vals['computeResourceConsumed']; + } + if (isset($vals['jobName'])) { + $this->jobName = $vals['jobName']; + } + if (isset($vals['workingDir'])) { + $this->workingDir = $vals['workingDir']; + } + } + } + + public function getName() { + return 'JobModel'; + } + + public function read($input) + { + $xfer = 0; + $fname = null; + $ftype = 0; + $fid = 0; + $xfer += $input->readStructBegin($fname); + while (true) + { + $xfer += $input->readFieldBegin($fname, $ftype, $fid); + if ($ftype == TType::STOP) { + break; + } + switch ($fid) + { + case 1: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->jobId); + } else { + $xfer += $input->skip($ftype); + } + break; + case 2: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->taskId); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->jobDescription); + } else { + $xfer += $input->skip($ftype); + } + break; + case 4: + if ($ftype == TType::I64) { + $xfer += $input->readI64($this->creationTime); + } else { + $xfer += $input->skip($ftype); + } + break; + case 5: + if ($ftype == TType::STRUCT) { + $this->jobStatus = new \Airavata\Model\Status\JobStatus(); + $xfer += $this->jobStatus->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 6: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->computeResourceConsumed); + } else { + $xfer += $input->skip($ftype); + } + break; + case 7: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->jobName); + } else { + $xfer += $input->skip($ftype); + } + break; + case 8: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->workingDir); + } else { + $xfer += $input->skip($ftype); + } + break; + default: + $xfer += $input->skip($ftype); + break; + } + $xfer += $input->readFieldEnd(); + } + $xfer += $input->readStructEnd(); + return $xfer; + } + + public function write($output) { + $xfer = 0; + $xfer += $output->writeStructBegin('JobModel'); + if ($this->jobId !== null) { + $xfer += $output->writeFieldBegin('jobId', TType::STRING, 1); + $xfer += $output->writeString($this->jobId); + $xfer += $output->writeFieldEnd(); + } + if ($this->taskId !== null) { + $xfer += $output->writeFieldBegin('taskId', TType::STRING, 2); + $xfer += $output->writeString($this->taskId); + $xfer += $output->writeFieldEnd(); + } + if ($this->jobDescription !== null) { + $xfer += $output->writeFieldBegin('jobDescription', TType::STRING, 3); + $xfer += $output->writeString($this->jobDescription); + $xfer += $output->writeFieldEnd(); + } + if ($this->creationTime !== null) { + $xfer += $output->writeFieldBegin('creationTime', TType::I64, 4); + $xfer += $output->writeI64($this->creationTime); + $xfer += $output->writeFieldEnd(); + } + if ($this->jobStatus !== null) { + if (!is_object($this->jobStatus)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('jobStatus', TType::STRUCT, 5); + $xfer += $this->jobStatus->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->computeResourceConsumed !== null) { + $xfer += $output->writeFieldBegin('computeResourceConsumed', TType::STRING, 6); + $xfer += $output->writeString($this->computeResourceConsumed); + $xfer += $output->writeFieldEnd(); + } + if ($this->jobName !== null) { + $xfer += $output->writeFieldBegin('jobName', TType::STRING, 7); + $xfer += $output->writeString($this->jobName); + $xfer += $output->writeFieldEnd(); + } + if ($this->workingDir !== null) { + $xfer += $output->writeFieldBegin('workingDir', TType::STRING, 8); + $xfer += $output->writeString($this->workingDir); + $xfer += $output->writeFieldEnd(); + } + $xfer += $output->writeFieldStop(); + $xfer += $output->writeStructEnd(); + return $xfer; + } + +} + +
