mirror of
https://github.com/pcvolkmer/onkostar-plugin-dnpm.git
synced 2025-07-01 17:02:53 +00:00
15 lines
364 B
Java
15 lines
364 B
Java
package dev.dnpm.security;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.METHOD)
|
|
public @interface PersonPoolSecuredResult {
|
|
|
|
PermissionType value() default PermissionType.READ_WRITE;
|
|
|
|
}
|