All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.zanzibar.annotations.FGARelation Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package io.quarkiverse.zanzibar.annotations;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

/**
 * Provides the relation to use in the FGA authorization check.
 * 

* To allow any relation to pass the authorization check the {@link #ANY} value can be used. */ @Inherited @Target({ TYPE, METHOD }) @Retention(RUNTIME) public @interface FGARelation { String ANY = "*"; /** * Name of relation to use for authorization check. */ String value(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy