Home
last modified time | relevance | path

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

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DExtendedRequest.php65 protected $requestValue; variable in FreeDSx\\Ldap\\Operation\\Request\\ExtendedRequest
69 * @param null|AbstractType|ProtocolElementInterface|string $requestValue
71 public function __construct(string $requestName, $requestValue = null) argument
74 $this->requestValue = $requestValue;
97 * @param AbstractType|ProtocolElementInterface|string|null $requestValue
100 public function setValue($requestValue) argument
102 $this->requestValue = $requestValue;
112 return $this->requestValue;
123 if ($this->requestValue !== null) {
124 $value = $this->requestValue;
H A DPasswordModifyRequest.php123 $this->requestValue = Asn1::sequence();
126 $this->requestValue->addChild(Asn1::context(0, Asn1::octetString($this->userIdentity)));
129 $this->requestValue->addChild(Asn1::context(1, Asn1::octetString($this->oldPassword)));
132 $this->requestValue->addChild(Asn1::context(2, Asn1::octetString($this->newPassword)));
H A DCancelRequest.php71 $this->requestValue = Asn1::sequence(Asn1::integer($this->messageId));