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

org.esfinge.guardian.rbac.annotation.authorization.AllowRoles Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
package org.esfinge.guardian.rbac.annotation.authorization;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.esfinge.guardian.annotation.config.AuthorizerClass;
import org.esfinge.guardian.rbac.authorizer.AllowRolesAuthorizer;

@AuthorizerClass(AllowRolesAuthorizer.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
public @interface AllowRoles {
	String[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy