blob: ce71bfcec91f28df6c5d7ba0c46e180b76394f3d [file] [log] [blame]
<?php
namespace Airavata\Model\Security;
/**
* Autogenerated by Thrift Compiler (0.10.0)
*
* 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 AuthzToken {
static $_TSPEC;
/**
* @var string
*/
public $accessToken = null;
/**
* @var array
*/
public $claimsMap = null;
public function __construct($vals=null) {
if (!isset(self::$_TSPEC)) {
self::$_TSPEC = array(
1 => array(
'var' => 'accessToken',
'type' => TType::STRING,
),
2 => array(
'var' => 'claimsMap',
'type' => TType::MAP,
'ktype' => TType::STRING,
'vtype' => TType::STRING,
'key' => array(
'type' => TType::STRING,
),
'val' => array(
'type' => TType::STRING,
),
),
);
}
if (is_array($vals)) {
if (isset($vals['accessToken'])) {
$this->accessToken = $vals['accessToken'];
}
if (isset($vals['claimsMap'])) {
$this->claimsMap = $vals['claimsMap'];
}
}
}
public function getName() {
return 'AuthzToken';
}
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->accessToken);
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::MAP) {
$this->claimsMap = array();
$_size0 = 0;
$_ktype1 = 0;
$_vtype2 = 0;
$xfer += $input->readMapBegin($_ktype1, $_vtype2, $_size0);
for ($_i4 = 0; $_i4 < $_size0; ++$_i4)
{
$key5 = '';
$val6 = '';
$xfer += $input->readString($key5);
$xfer += $input->readString($val6);
$this->claimsMap[$key5] = $val6;
}
$xfer += $input->readMapEnd();
} 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('AuthzToken');
if ($this->accessToken !== null) {
$xfer += $output->writeFieldBegin('accessToken', TType::STRING, 1);
$xfer += $output->writeString($this->accessToken);
$xfer += $output->writeFieldEnd();
}
if ($this->claimsMap !== null) {
if (!is_array($this->claimsMap)) {
throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
}
$xfer += $output->writeFieldBegin('claimsMap', TType::MAP, 2);
{
$output->writeMapBegin(TType::STRING, TType::STRING, count($this->claimsMap));
{
foreach ($this->claimsMap as $kiter7 => $viter8)
{
$xfer += $output->writeString($kiter7);
$xfer += $output->writeString($viter8);
}
}
$output->writeMapEnd();
}
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}