for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign;
/**
* Class representing RetrievalMethodType
*
* XSD Type: RetrievalMethodType
*/
class RetrievalMethodType
{
* @property string $uRI
private $uRI = null;
* @property string $type
private $type = null;
* @property
* \GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign\Transform[]
* $transforms
private $transforms = null;
* Gets as uRI
* @return string
public function getURI()
return $this->uRI;
}
* Sets a new uRI
* @param string $uRI
* @return self
public function setURI($uRI)
$this->uRI = $uRI;
return $this;
* Gets as type
public function getType()
return $this->type;
* Sets a new type
* @param string $type
public function setType($type)
$this->type = $type;
* Adds as transform
* @param
* \GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign\Transform
* $transform
public function addToTransforms(\GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign\Transform $transform)
$this->transforms[] = $transform;
* isset transforms
* @param scalar $index
* @return boolean
public function issetTransforms($index)
return isset($this->transforms[$index]);
* unset transforms
* @return void
public function unsetTransforms($index)
unset($this->transforms[$index]);
* Gets as transforms
* @return
public function getTransforms()
return $this->transforms;
* Sets a new transforms
public function setTransforms(array $transforms)
$this->transforms = $transforms;