Skip to content

Commit

Permalink
Merge pull request #34877 from sberyozkin/oidc_experimental_tenant_ann
Browse files Browse the repository at this point in the history
[3.2] Mark OIDC Tenant annotation as Experimental
  • Loading branch information
gsmet committed Jul 20, 2023
2 parents 9e6b6e8 + 7fc3edd commit 96a3152
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import io.smallrye.common.annotation.Experimental;

/**
* Qualifier which can be used to associate one or more OIDC features with a named tenant.
* Annotation which can be used to associate one or more OIDC features with a named tenant.
*/
@Target({ TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Experimental("Tenant annnotation is experimental and may change without notice")
public @interface Tenant {
/**
* Identifies an OIDC tenant to which a given feature applies.
Expand Down

0 comments on commit 96a3152

Please sign in to comment.