Move concrete UserBackend classes to Icinga\Authentication\User
refs #8826
This commit is contained in:
parent
39473e8939
commit
6ca68f438d
|
@ -7,7 +7,7 @@ use Icinga\Application\Config;
|
|||
use Icinga\Application\Icinga;
|
||||
use Icinga\Application\Logger;
|
||||
use Icinga\Authentication\AuthChain;
|
||||
use Icinga\Authentication\Backend\ExternalBackend;
|
||||
use Icinga\Authentication\User\ExternalBackend;
|
||||
use Icinga\Exception\AuthenticationException;
|
||||
use Icinga\Exception\ConfigurationError;
|
||||
use Icinga\Exception\NotReadableError;
|
||||
|
|
|
@ -7,7 +7,7 @@ use Exception;
|
|||
use Icinga\Web\Form;
|
||||
use Icinga\Data\ConfigObject;
|
||||
use Icinga\Data\ResourceFactory;
|
||||
use Icinga\Authentication\Backend\DbUserBackend;
|
||||
use Icinga\Authentication\User\DbUserBackend;
|
||||
|
||||
/**
|
||||
* Form class for adding/modifying database authentication backends
|
||||
|
|
|
@ -8,7 +8,7 @@ use Icinga\Web\Form;
|
|||
use Icinga\Data\ConfigObject;
|
||||
use Icinga\Data\ResourceFactory;
|
||||
use Icinga\Exception\AuthenticationException;
|
||||
use Icinga\Authentication\Backend\LdapUserBackend;
|
||||
use Icinga\Authentication\User\LdapUserBackend;
|
||||
|
||||
/**
|
||||
* Form class for adding/modifying LDAP authentication backends
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Authentication\Backend;
|
||||
namespace Icinga\Authentication\User;
|
||||
|
||||
use PDO;
|
||||
use Icinga\Authentication\User\UserBackend;
|
||||
use Icinga\Data\Db\DbConnection;
|
||||
use Icinga\User;
|
||||
use Icinga\Exception\AuthenticationException;
|
|
@ -1,9 +1,8 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Authentication\Backend;
|
||||
namespace Icinga\Authentication\User;
|
||||
|
||||
use Icinga\Authentication\User\UserBackend;
|
||||
use Icinga\Data\ConfigObject;
|
||||
use Icinga\User;
|
||||
|
|
@ -1,10 +1,9 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Authentication\Backend;
|
||||
namespace Icinga\Authentication\User;
|
||||
|
||||
use Icinga\User;
|
||||
use Icinga\Authentication\User\UserBackend;
|
||||
use Icinga\Protocol\Ldap\Query;
|
||||
use Icinga\Protocol\Ldap\Connection;
|
||||
use Icinga\Exception\AuthenticationException;
|
|
@ -4,9 +4,6 @@
|
|||
namespace Icinga\Authentication\User;
|
||||
|
||||
use Countable;
|
||||
use Icinga\Authentication\Backend\ExternalBackend;
|
||||
use Icinga\Authentication\Backend\DbUserBackend;
|
||||
use Icinga\Authentication\Backend\LdapUserBackend;
|
||||
use Icinga\Data\ConfigObject;
|
||||
use Icinga\Data\ResourceFactory;
|
||||
use Icinga\Exception\ConfigurationError;
|
||||
|
|
|
@ -8,8 +8,8 @@ use LogicException;
|
|||
use Icinga\Web\Form;
|
||||
use Icinga\Data\ConfigObject;
|
||||
use Icinga\Data\ResourceFactory;
|
||||
use Icinga\Authentication\Backend\DbUserBackend;
|
||||
use Icinga\Authentication\Backend\LdapUserBackend;
|
||||
use Icinga\Authentication\User\DbUserBackend;
|
||||
use Icinga\Authentication\User\LdapUserBackend;
|
||||
|
||||
/**
|
||||
* Wizard page to define the initial administrative account
|
||||
|
|
|
@ -7,7 +7,7 @@ use Exception;
|
|||
use Icinga\Application\Config;
|
||||
use Icinga\Data\ConfigObject;
|
||||
use Icinga\Data\ResourceFactory;
|
||||
use Icinga\Authentication\Backend\DbUserBackend;
|
||||
use Icinga\Authentication\User\DbUserBackend;
|
||||
use Icinga\Module\Setup\Step;
|
||||
|
||||
class AuthenticationStep extends Step
|
||||
|
|
Loading…
Reference in New Issue