Home
last modified time | relevance | path

Searched refs:responseValue (Results 1 – 3 of 3) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DIntermediateResponse.php40 protected $responseValue; variable in FreeDSx\\Ldap\\Operation\\Response\\IntermediateResponse
44 * @param null|string $responseValue
46 public function __construct(?string $responseName, ?string $responseValue) argument
49 $this->responseValue = $responseValue;
65 return $this->responseValue;
103 if ($this->responseValue !== null) {
104 $response->addChild(Asn1::context(1, Asn1::octetString($this->responseValue)));
H A DExtendedResponse.php54 protected $responseValue; variable in FreeDSx\\Ldap\\Operation\\Response\\ExtendedResponse
59 * @param null|string $responseValue
61 …public function __construct(LdapResult $result, ?string $responseName = null, $responseValue = nul… argument
63 $this->responseValue = $responseValue;
85 return is_string($this->responseValue) ? $this->responseValue : null;
114 if ($this->responseValue !== null) {
116 $value = $this->responseValue;
H A DPasswordModifyResponse.php61 …$this->responseValue = Asn1::sequence(Asn1::context(0, Asn1::octetString($this->generatedPassword)…