From cf8eace69016ce82c5bd0879d595101a5050523a Mon Sep 17 00:00:00 2001 From: Kevin Frantz Date: Thu, 30 May 2019 16:57:55 +0200 Subject: [PATCH] Renamed domain SecureManagement to Secure --- application/symfony/config/services.yaml | 2 +- .../src/Domain/Action/ActionDependenciesDAOService.php | 2 +- application/symfony/src/Domain/Process/ProcessService.php | 2 +- .../SecureRequestedRightCheckerService.php | 4 ++-- .../SecureRequestedRightCheckerServiceInterface.php | 2 +- .../{SecureManagement => Secure}/SecureSourceChecker.php | 4 ++-- .../SecureSourceCheckerInterface.php | 2 +- .../Action/Create/CreateSourceActionIntegrationTest.php | 2 +- .../SecureRequestedRightCheckerIntegrationTest.php | 4 ++-- .../symfony/tests/Unit/Domain/Action/ActionServiceTest.php | 2 +- .../Unit/Domain/Action/Create/CreateSourceActionTest.php | 2 +- .../SecureRequestedRightCheckerTest.php | 4 ++-- .../SecureSourceCheckerTest.php | 6 +++--- 13 files changed, 19 insertions(+), 19 deletions(-) rename application/symfony/src/Domain/{SecureManagement => Secure}/SecureRequestedRightCheckerService.php (88%) rename application/symfony/src/Domain/{SecureManagement => Secure}/SecureRequestedRightCheckerServiceInterface.php (90%) rename application/symfony/src/Domain/{SecureManagement => Secure}/SecureSourceChecker.php (95%) rename application/symfony/src/Domain/{SecureManagement => Secure}/SecureSourceCheckerInterface.php (86%) rename application/symfony/tests/Integration/Domain/{SecureManagement => Secure}/SecureRequestedRightCheckerIntegrationTest.php (95%) rename application/symfony/tests/Unit/Domain/{SecureManagement => Secure}/SecureRequestedRightCheckerTest.php (97%) rename application/symfony/tests/Unit/Domain/{SecureManagement => Secure}/SecureSourceCheckerTest.php (96%) diff --git a/application/symfony/config/services.yaml b/application/symfony/config/services.yaml index 048187d..2953b6b 100644 --- a/application/symfony/config/services.yaml +++ b/application/symfony/config/services.yaml @@ -50,7 +50,7 @@ services: public: true Infinito\Domain\Form\RequestedActionFormBuilderService: public: true - Infinito\Domain\SecureManagement\SecureRequestedRightCheckerService: + Infinito\Domain\Secure\SecureRequestedRightCheckerService: public: true Infinito\Domain\Action\ActionService: public: true diff --git a/application/symfony/src/Domain/Action/ActionDependenciesDAOService.php b/application/symfony/src/Domain/Action/ActionDependenciesDAOService.php index 9ca395e..86fe2eb 100644 --- a/application/symfony/src/Domain/Action/ActionDependenciesDAOService.php +++ b/application/symfony/src/Domain/Action/ActionDependenciesDAOService.php @@ -11,7 +11,7 @@ use Symfony\Component\Form\FormBuilderInterface; use Doctrine\ORM\EntityManagerInterface; use Infinito\Domain\Form\RequestedActionFormBuilderServiceInterface; use Infinito\Domain\Request\Action\RequestedActionServiceInterface; -use Infinito\Domain\SecureManagement\SecureRequestedRightCheckerServiceInterface; +use Infinito\Domain\Secure\SecureRequestedRightCheckerServiceInterface; /** * @author kevinfrantz diff --git a/application/symfony/src/Domain/Process/ProcessService.php b/application/symfony/src/Domain/Process/ProcessService.php index 6e95a2d..d6fa849 100644 --- a/application/symfony/src/Domain/Process/ProcessService.php +++ b/application/symfony/src/Domain/Process/ProcessService.php @@ -3,7 +3,7 @@ namespace Infinito\Domain\Process; use Infinito\Domain\Request\Action\RequestedActionServiceInterface; -use Infinito\Domain\SecureManagement\SecureRequestedRightCheckerServiceInterface; +use Infinito\Domain\Secure\SecureRequestedRightCheckerServiceInterface; use Infinito\Domain\Action\ActionHandlerServiceInterface; use Infinito\Entity\Source\Primitive\Text\TextSource; use Infinito\Domain\DataAccessManagement\ActionsResultsDAOServiceInterface; diff --git a/application/symfony/src/Domain/SecureManagement/SecureRequestedRightCheckerService.php b/application/symfony/src/Domain/Secure/SecureRequestedRightCheckerService.php similarity index 88% rename from application/symfony/src/Domain/SecureManagement/SecureRequestedRightCheckerService.php rename to application/symfony/src/Domain/Secure/SecureRequestedRightCheckerService.php index c14d853..658f3df 100644 --- a/application/symfony/src/Domain/SecureManagement/SecureRequestedRightCheckerService.php +++ b/application/symfony/src/Domain/Secure/SecureRequestedRightCheckerService.php @@ -1,6 +1,6 @@