Searched refs:ModifyDnRequest (Results 1 – 8 of 8) sorted by relevance
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/ |
H A D | Operations.php | 26 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; alias 149 public static function move(string $dn, string $newParentDn): ModifyDnRequest 153 return new ModifyDnRequest($dn, $dnObj->getRdn()->toString(), true, $newParentDn); 177 public static function rename(string $dn, $rdn, bool $deleteOldRdn = true): ModifyDnRequest 179 return new ModifyDnRequest($dn, $rdn, $deleteOldRdn);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/ |
H A D | RequestHandlerInterface.php | 19 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; alias 71 public function modifyDn(RequestContext $context, ModifyDnRequest $modifyDn): void;
|
H A D | GenericRequestHandler.php | 19 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; alias 83 public function modifyDn(RequestContext $context, ModifyDnRequest $modifyDn): void
|
H A D | ProxyRequestHandler.php | 22 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; alias 69 public function modifyDn(RequestContext $context, ModifyDnRequest $modifyDn): void
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/ |
H A D | ResponseFactory.php | 19 use FreeDSx\Ldap\Operation\Request\ModifyDnRequest; alias 59 } elseif ($request instanceof ModifyDnRequest) {
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/ |
H A D | ServerDispatchHandler.php | 43 } elseif ($request instanceof Request\ModifyDnRequest) {
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/ |
H A D | ModifyDnRequest.php | 33 class ModifyDnRequest implements RequestInterface, DnRequestInterface class
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ |
H A D | LdapMessage.php | 228 $operation = Request\ModifyDnRequest::fromAsn1($opAsn1);
|