[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/symfony/ldap/Adapter/ -> EntryManagerInterface.php (source)

   1  <?php
   2  
   3  /*
   4   * This file is part of the Symfony package.
   5   *
   6   * (c) Fabien Potencier <[email protected]>
   7   *
   8   * For the full copyright and license information, please view the LICENSE
   9   * file that was distributed with this source code.
  10   */
  11  
  12  namespace Symfony\Component\Ldap\Adapter;
  13  
  14  use Symfony\Component\Ldap\Entry;
  15  use Symfony\Component\Ldap\Exception\LdapException;
  16  use Symfony\Component\Ldap\Exception\NotBoundException;
  17  
  18  /**
  19   * @author Charles Sarrazin <[email protected]>
  20   * @author Bob van de Vijver <[email protected]>
  21   * @author Kevin Schuurmans <[email protected]>
  22   */
  23  interface EntryManagerInterface
  24  {
  25      /**
  26       * Adds a new entry in the Ldap server.
  27       *
  28       * @throws NotBoundException
  29       * @throws LdapException
  30       */
  31      public function add(Entry $entry);
  32  
  33      /**
  34       * Updates an entry from the Ldap server.
  35       *
  36       * @throws NotBoundException
  37       * @throws LdapException
  38       */
  39      public function update(Entry $entry);
  40  
  41      /**
  42       * Moves an entry on the Ldap server.
  43       *
  44       * @throws NotBoundException
  45       * @throws LdapException
  46       */
  47      public function move(Entry $entry, string $newParent);
  48  
  49      /**
  50       * Renames an entry on the Ldap server.
  51       *
  52       * @throws NotBoundException
  53       * @throws LdapException
  54       */
  55      public function rename(Entry $entry, string $newRdn, bool $removeOldRdn = true);
  56  
  57      /**
  58       * Removes an entry from the Ldap server.
  59       *
  60       * @throws NotBoundException
  61       * @throws LdapException
  62       */
  63      public function remove(Entry $entry);
  64  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer