Home
last modified time | relevance | path

Searched refs:ModifyDnRequest (Results 1 – 8 of 8) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DOperations.php28 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest;
153 public static function move(string $dn, string $newParentDn): ModifyDnRequest
157 return new ModifyDnRequest($dn, $dnObj->getRdn()->toString(), true, $newParentDn);
181 public static function rename(string $dn, $rdn, bool $deleteOldRdn = true): ModifyDnRequest
183 return new ModifyDnRequest($dn, $rdn, $deleteOldRdn);
26 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/
H A DRequestHandlerInterface.php20 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest;
72 public function modifyDn(RequestContext $context, ModifyDnRequest $modifyDn): void;
19 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; global() alias
H A DGenericRequestHandler.php20 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest;
84 public function modifyDn(RequestContext $context, ModifyDnRequest $modifyDn): void
19 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; global() alias
H A DProxyRequestHandler.php23 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest;
70 public function modifyDn(RequestContext $context, ModifyDnRequest $modifyDn): void
22 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DResponseFactory.php20 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest;
60 } elseif ($request instanceof ModifyDnRequest) {
19 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerDispatchHandler.php51 } elseif ($request instanceof Request\ModifyDnRequest) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DModifyDnRequest.php37 class ModifyDnRequest implements RequestInterface, DnRequestInterface
33 class ModifyDnRequest implements RequestInterface, DnRequestInterface global() class
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapMessage.php240 $operation = Request\ModifyDnRequest::fromAsn1($opAsn1);