Home
last modified time | relevance | path

Searched refs:getDn (Results 1 – 19 of 19) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
DResponseFactory.php55 … $response = new AddResponse($resultCode, $request->getEntry()->getDn()->toString(), $diagnostic);
57 … $response = new CompareResponse($resultCode, $request->getDn()->toString(), $diagnostic);
59 $response = new DeleteResponse($resultCode, $request->getDn()->toString(), $diagnostic);
61 … $response = new ModifyDnResponse($resultCode, $request->getDn()->toString(), $diagnostic);
63 $response = new ModifyResponse($resultCode, $request->getDn()->toString(), $diagnostic);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
DClientReferralHandler.php189 if ($referral->getDn() !== null && $request instanceof SearchRequest) {
190 $request->setBaseDn($referral->getDn());
191 } elseif ($referral->getDn() !== null && $request instanceof DnRequestInterface) {
192 $request->setDn($referral->getDn());
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
DEntries.php83 if ((string) $entry === $entryObj->getDn()->toString()) {
100 if ($entry->getDn()->toString() === $dn) {
DEntry.php190 public function getDn(): Dn function in FreeDSx\\Ldap\\Entry\\Entry
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
DRangeRetrieval.php149 $result->getDn()->toString()
175 $entry->getDn()->toString()
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
DDeleteRequest.php58 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\Request\\DeleteRequest
DCompareRequest.php60 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\Request\\CompareRequest
DAddRequest.php150 Asn1::octetString($this->entry->getDn()->toString()),
DModifyDnRequest.php78 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\Request\\ModifyDnRequest
DModifyRequest.php99 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\Request\\ModifyRequest
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
DBindResponse.php49 …parent::__construct($result->getResultCode(), $result->getDn(), $result->getDiagnosticMessage(), .…
DSearchResultEntry.php112 $asn1->addChild(Asn1::octetString($this->entry->getDn()->toString()));
DExtendedResponse.php65 …parent::__construct($result->getResultCode(), $result->getDn(), $result->getDiagnosticMessage(), .…
/plugin/pureldap/classes/
DGroupHierarchyCache.php87 $dn = (string)$entry->getDn();
DADClient.php139 … $groups[$entry->getDn()->toString()] = $this->cleanGroup($this->attr2str($entry->get('cn')));
297 'dn' => $entry->getDn()->toString(),
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/
DLdapResult.php132 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\LdapResult
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
DLdapUrl.php104 public function getDn(): ?Dn function in FreeDSx\\Ldap\\LdapUrl
DLdapClient.php212 …$response = $this->sendAndReceive(Operations::modify($entry->getDn(), ...$entry->changes()), ...$c…
/plugin/pureldap/vendor/freedsx/ldap/
DREADME.md77 echo "Entry: ".$entry->getDn().PHP_EOL;