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 DSAKeyValueType
*
* XSD Type: DSAKeyValueType
*/
class DSAKeyValueType
{
* @property mixed $p
private $p = null;
* @property mixed $q
private $q = null;
* @property mixed $g
private $g = null;
* @property mixed $y
private $y = null;
* @property mixed $j
private $j = null;
* @property mixed $seed
private $seed = null;
* @property mixed $pgenCounter
private $pgenCounter = null;
* Gets as p
* @return mixed
public function getP()
return $this->p;
}
* Sets a new p
* @param mixed $p
* @return self
public function setP($p)
$this->p = $p;
return $this;
* Gets as q
public function getQ()
return $this->q;
* Sets a new q
* @param mixed $q
public function setQ($q)
$this->q = $q;
* Gets as g
public function getG()
return $this->g;
* Sets a new g
* @param mixed $g
public function setG($g)
$this->g = $g;
* Gets as y
public function getY()
return $this->y;
* Sets a new y
* @param mixed $y
public function setY($y)
$this->y = $y;
* Gets as j
public function getJ()
return $this->j;
* Sets a new j
* @param mixed $j
public function setJ($j)
$this->j = $j;
* Gets as seed
public function getSeed()
return $this->seed;
* Sets a new seed
* @param mixed $seed
public function setSeed($seed)
$this->seed = $seed;
* Gets as pgenCounter
public function getPgenCounter()
return $this->pgenCounter;
* Sets a new pgenCounter
* @param mixed $pgenCounter
public function setPgenCounter($pgenCounter)
$this->pgenCounter = $pgenCounter;