Skip to content

Commit

Permalink
Mark OIDC Tenant annotation as Experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
sberyozkin committed Jul 20, 2023
1 parent 9e6b6e8 commit 7fc3edd
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 7fc3edd

Please sign in to comment.