8000 chore: set oidc feature as experimental · symfony/symfony@d34f877 · GitHub
[go: up one dir, main page]

Skip to content

Commit d34f877

Browse files
chore: set oidc feature as experimental
1 parent 5a547b7 commit d34f877

File tree

7 files changed

+14
-0
lines changed

7 files changed

+14
-0
lines changed

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/AccessToken/OidcUserInfoTokenHandlerFactory.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
/**
2121
* Configures a token handler for an OIDC server.
22+
*
23+
* @experimental
2224
*/
2325
class OidcUserInfoTokenHandlerFactory implements TokenHandlerFactoryInterface
2426
{

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/AccessToken/ServiceTokenHandlerFactory.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
* Configures a token handler from a service id.
2020
*
2121
* @see \Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\Security\Factory\AccessTokenFactoryTest
22+
*
23+
* @experimental
2224
*/
2325
class ServiceTokenHandlerFactory implements TokenHandlerFactoryInterface
2426
{

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/AccessToken/TokenHandlerFactoryInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
/**
1818
* Allows creating configurable token handlers.
19+
*
20+
* @experimental
1921
*/
2022
interface TokenHandlerFactoryInterface
2123
{

src/Symfony/Component/Security/Core/User/AttributesBasedUserProviderInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
/**
1717
* Overrides UserProviderInterface to add an "attributes" argument on loadUserByIdentifier.
1818
* This is particularly useful with self-contained access tokens.
19+
*
20+
* @experimental
1921
*/
2022
interface AttributesBasedUserProviderInterface extends UserProviderInterface
2123
{

src/Symfony/Component/Security/Core/User/OidcUser.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
/**
1515
* UserInterface implementation used by the access-token security workflow with an OIDC server.
16+
*
17+
* @experimental
1618
*/
1719
class OidcUser implements UserInterface
1820
{

src/Symfony/Component/Security/Http/AccessToken/Oidc/Exception/InvalidSignatureException.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
/**
1717
* This exception is thrown when the token signature is invalid.
18+
*
19+
* @experimental
1820
*/
1921
class InvalidSignatureException extends AuthenticationException
2022
{

src/Symfony/Component/Security/Http/AccessToken/Oidc/Exception/MissingClaimException.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
/**
1717
* This exception is thrown when the user is invalid on the OIDC server (e.g.: "email" property is not in the scope).
18+
*
19+
* @experimental
1820
*/
1921
class MissingClaimException extends AuthenticationException
2022
{

0 commit comments

Comments
 (0)
0