summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2013-05-08 14:19:47 +0200
committerJordi Boggiano <j.boggiano@seld.be>2013-05-08 15:02:54 +0200
commit13715788ca2d32961b9098f434dafc70264dfddd (patch)
treebae051b14ece54b657f51932575f275d2b6f2ea6
parent61a938df990ae4325505c6b5b07be491c004aded (diff)
downloadsymfony-security-13715788ca2d32961b9098f434dafc70264dfddd.zip
symfony-security-13715788ca2d32961b9098f434dafc70264dfddd.tar.gz
symfony-security-13715788ca2d32961b9098f434dafc70264dfddd.tar.bz2
marked some classes as being experimental in 2.3
-rw-r--r--Core/Authentication/Provider/SimpleAuthenticationProvider.php2
-rw-r--r--Core/Authentication/SimpleAuthenticatorInterface.php2
-rw-r--r--Core/Authentication/SimpleFormAuthenticatorInterface.php2
-rw-r--r--Core/Authentication/SimplePreAuthenticatorInterface.php2
-rw-r--r--Http/Authentication/SimpleAuthenticationHandler.php2
-rw-r--r--Http/Firewall/SimpleFormAuthenticationListener.php2
-rw-r--r--Http/Firewall/SimplePreAuthenticationListener.php2
7 files changed, 14 insertions, 0 deletions
diff --git a/Core/Authentication/Provider/SimpleAuthenticationProvider.php b/Core/Authentication/Provider/SimpleAuthenticationProvider.php
index 8f8cceb..50c9a08 100644
--- a/Core/Authentication/Provider/SimpleAuthenticationProvider.php
+++ b/Core/Authentication/Provider/SimpleAuthenticationProvider.php
@@ -24,6 +24,8 @@ use Symfony\Component\Security\Core\Exception\AuthenticationException;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
+ *
+ * @experimental This feature is experimental in 2.3 and might change in future versions
*/
class SimpleAuthenticationProvider implements AuthenticationProviderInterface
{
diff --git a/Core/Authentication/SimpleAuthenticatorInterface.php b/Core/Authentication/SimpleAuthenticatorInterface.php
index 868d072..e8ad7b8 100644
--- a/Core/Authentication/SimpleAuthenticatorInterface.php
+++ b/Core/Authentication/SimpleAuthenticatorInterface.php
@@ -16,6 +16,8 @@ use Symfony\Component\Security\Core\User\UserProviderInterface;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
+ *
+ * @experimental This feature is experimental in 2.3 and might change in future versions
*/
interface SimpleAuthenticatorInterface
{
diff --git a/Core/Authentication/SimpleFormAuthenticatorInterface.php b/Core/Authentication/SimpleFormAuthenticatorInterface.php
index 95ee881..bfc3ec2 100644
--- a/Core/Authentication/SimpleFormAuthenticatorInterface.php
+++ b/Core/Authentication/SimpleFormAuthenticatorInterface.php
@@ -15,6 +15,8 @@ use Symfony\Component\HttpFoundation\Request;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
+ *
+ * @experimental This feature is experimental in 2.3 and might change in future versions
*/
interface SimpleFormAuthenticatorInterface extends SimpleAuthenticatorInterface
{
diff --git a/Core/Authentication/SimplePreAuthenticatorInterface.php b/Core/Authentication/SimplePreAuthenticatorInterface.php
index 6164e7d..8fa7037 100644
--- a/Core/Authentication/SimplePreAuthenticatorInterface.php
+++ b/Core/Authentication/SimplePreAuthenticatorInterface.php
@@ -15,6 +15,8 @@ use Symfony\Component\HttpFoundation\Request;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
+ *
+ * @experimental This feature is experimental in 2.3 and might change in future versions
*/
interface SimplePreAuthenticatorInterface extends SimpleAuthenticatorInterface
{
diff --git a/Http/Authentication/SimpleAuthenticationHandler.php b/Http/Authentication/SimpleAuthenticationHandler.php
index ce56ee3..88be8e4 100644
--- a/Http/Authentication/SimpleAuthenticationHandler.php
+++ b/Http/Authentication/SimpleAuthenticationHandler.php
@@ -26,6 +26,8 @@ use Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface;
* the default handlers are triggered.
*
* @author Jordi Boggiano <j.boggiano@seld.be>
+ *
+ * @experimental This feature is experimental in 2.3 and might change in future versions
*/
class SimpleAuthenticationHandler implements AuthenticationFailureHandlerInterface, AuthenticationSuccessHandlerInterface
{
diff --git a/Http/Firewall/SimpleFormAuthenticationListener.php b/Http/Firewall/SimpleFormAuthenticationListener.php
index 7c4b971..8325bb1 100644
--- a/Http/Firewall/SimpleFormAuthenticationListener.php
+++ b/Http/Firewall/SimpleFormAuthenticationListener.php
@@ -32,6 +32,8 @@ use Psr\Log\LoggerInterface;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
+ *
+ * @experimental This feature is experimental in 2.3 and might change in future versions
*/
class SimpleFormAuthenticationListener extends AbstractAuthenticationListener
{
diff --git a/Http/Firewall/SimplePreAuthenticationListener.php b/Http/Firewall/SimplePreAuthenticationListener.php
index 2a6b4d5..637ed39 100644
--- a/Http/Firewall/SimplePreAuthenticationListener.php
+++ b/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 <j.boggiano@seld.be>
+ *
+ * @experimental This feature is experimental in 2.3 and might change in future versions
*/
class SimplePreAuthenticationListener implements ListenerInterface
{