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/
H A DResponseFactory.php54 … $response = new AddResponse($resultCode, $request->getEntry()->getDn()->toString(), $diagnostic);
56 … $response = new CompareResponse($resultCode, $request->getDn()->toString(), $diagnostic);
58 $response = new DeleteResponse($resultCode, $request->getDn()->toString(), $diagnostic);
60 … $response = new ModifyDnResponse($resultCode, $request->getDn()->toString(), $diagnostic);
62 $response = new ModifyResponse($resultCode, $request->getDn()->toString(), $diagnostic);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientReferralHandler.php168 if ($referral->getDn() !== null && $request instanceof SearchRequest) {
169 $request->setBaseDn($referral->getDn());
170 } elseif ($referral->getDn() !== null && $request instanceof DnRequestInterface) {
171 $request->setDn($referral->getDn());
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEntries.php74 if ((string) $entry === $entryObj->getDn()->toString()) {
91 if ($entry->getDn()->toString() === $dn) {
H A DEntry.php182 public function getDn(): Dn function in FreeDSx\\Ldap\\Entry\\Entry
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DRangeRetrieval.php146 $result->getDn()->toString()
172 $entry->getDn()->toString()
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DDeleteRequest.php57 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\Request\\DeleteRequest
H A DCompareRequest.php57 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\Request\\CompareRequest
H A DAddRequest.php146 Asn1::octetString($this->entry->getDn()->toString()),
H A DModifyDnRequest.php74 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\Request\\ModifyDnRequest
H A DModifyRequest.php96 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\Request\\ModifyRequest
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DBindResponse.php43 …parent::__construct($result->getResultCode(), $result->getDn(), $result->getDiagnosticMessage(), .…
H A DSearchResultEntry.php110 $asn1->addChild(Asn1::octetString($this->entry->getDn()->toString()));
H A DExtendedResponse.php59 …parent::__construct($result->getResultCode(), $result->getDn(), $result->getDiagnosticMessage(), .…
/plugin/pureldap/classes/
H A DADClient.php83 … $groups[$entry->getDn()->toString()] = $this->cleanGroup($this->attr2str($entry->get('cn')));
233 'dn' => $entry->getDn()->toString(),
H A DGroupHierarchyCache.php87 $dn = (string)$entry->getDn();
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/
H A DLdapResult.php128 public function getDn(): Dn function in FreeDSx\\Ldap\\Operation\\LdapResult
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php90 public function getDn(): ?Dn function in FreeDSx\\Ldap\\LdapUrl
H A DLdapClient.php208 …$response = $this->sendAndReceive(Operations::modify($entry->getDn(), ...$entry->changes()), ...$c…
/plugin/pureldap/vendor/freedsx/ldap/
H A DREADME.md77 echo "Entry: ".$entry->getDn().PHP_EOL;