From 74cfc84c87ac281d1ed5aeb8eca9c86ae46c50cf Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 8 May 2013 14:19:47 +0200 Subject: [PATCH] marked some classes as being experimental in 2.3 --- .../DependencyInjection/Security/Factory/SimpleFormFactory.php | 2 ++ .../Security/Factory/SimplePreAuthenticationFactory.php | 2 ++ .../Authentication/Provider/SimpleAuthenticationProvider.php | 2 ++ .../Core/Authentication/SimpleAuthenticatorInterface.php | 2 ++ .../Core/Authentication/SimpleFormAuthenticatorInterface.php | 2 ++ .../Core/Authentication/SimplePreAuthenticatorInterface.php | 2 ++ .../Http/Authentication/SimpleAuthenticationHandler.php | 2 ++ .../Security/Http/Firewall/SimpleFormAuthenticationListener.php | 2 ++ .../Security/Http/Firewall/SimplePreAuthenticationListener.php | 2 ++ 9 files changed, 18 insertions(+) diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php index 8fdef89a74..f13fd5e08d 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php @@ -18,6 +18,8 @@ use Symfony\Component\DependencyInjection\Reference; /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleFormFactory extends FormLoginFactory { diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php index 27d8c5f050..689316e26f 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php @@ -18,6 +18,8 @@ use Symfony\Component\DependencyInjection\Reference; /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimplePreAuthenticationFactory implements SecurityFactoryInterface { diff --git a/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php b/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php index 8f8ccebb43..50c9a08a7a 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php +++ b/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php @@ -24,6 +24,8 @@ use Symfony\Component\Security\Core\Exception\AuthenticationException; /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleAuthenticationProvider implements AuthenticationProviderInterface { diff --git a/src/Symfony/Component/Security/Core/Authentication/SimpleAuthenticatorInterface.php b/src/Symfony/Component/Security/Core/Authentication/SimpleAuthenticatorInterface.php index 868d072714..e8ad7b8fe7 100644 --- a/src/Symfony/Component/Security/Core/Authentication/SimpleAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/SimpleAuthenticatorInterface.php @@ -16,6 +16,8 @@ use Symfony\Component\Security\Core\User\UserProviderInterface; /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimpleAuthenticatorInterface { diff --git a/src/Symfony/Component/Security/Core/Authentication/SimpleFormAuthenticatorInterface.php b/src/Symfony/Component/Security/Core/Authentication/SimpleFormAuthenticatorInterface.php index 95ee881c18..bfc3ec240e 100644 --- a/src/Symfony/Component/Security/Core/Authentication/SimpleFormAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/SimpleFormAuthenticatorInterface.php @@ -15,6 +15,8 @@ use Symfony\Component\HttpFoundation\Request; /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimpleFormAuthenticatorInterface extends SimpleAuthenticatorInterface { diff --git a/src/Symfony/Component/Security/Core/Authentication/SimplePreAuthenticatorInterface.php b/src/Symfony/Component/Security/Core/Authentication/SimplePreAuthenticatorInterface.php index 6164e7d986..8fa7037d39 100644 --- a/src/Symfony/Component/Security/Core/Authentication/SimplePreAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/SimplePreAuthenticatorInterface.php @@ -15,6 +15,8 @@ use Symfony\Component\HttpFoundation\Request; /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimplePreAuthenticatorInterface extends SimpleAuthenticatorInterface { diff --git a/src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php b/src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php index ce56ee3f88..88be8e4b1f 100644 --- a/src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php +++ b/src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php @@ -26,6 +26,8 @@ use Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface; * the default handlers are triggered. * * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleAuthenticationHandler implements AuthenticationFailureHandlerInterface, AuthenticationSuccessHandlerInterface { diff --git a/src/Symfony/Component/Security/Http/Firewall/SimpleFormAuthenticationListener.php b/src/Symfony/Component/Security/Http/Firewall/SimpleFormAuthenticationListener.php index 7c4b9716ad..8325bb1920 100644 --- a/src/Symfony/Component/Security/Http/Firewall/SimpleFormAuthenticationListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/SimpleFormAuthenticationListener.php @@ -32,6 +32,8 @@ use Psr\Log\LoggerInterface; /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleFormAuthenticationListener extends AbstractAuthenticationListener { diff --git a/src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php b/src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php index 2a6b4d5c0d..637ed396a0 100644 --- a/src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php @@ -28,6 +28,8 @@ use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerI * SimplePreAuthenticationListener implements simple proxying to an authenticator. * * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimplePreAuthenticationListener implements ListenerInterface {