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

net.sf.esfinge.gamification.annotation.auth.ranking.DenyLevel Maven / Gradle / Ivy

package net.sf.esfinge.gamification.annotation.auth.ranking;

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

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

import org.esfinge.guardian.annotation.config.AuthorizerClass;

import net.sf.esfinge.gamification.guardian.auth.ranking.DenyLevelAuthorizer;
import net.sf.esfinge.metadata.annotation.validator.NotNull;

@Retention(RUNTIME)
@Target(METHOD)
@AuthorizerClass(DenyLevelAuthorizer.class)
public @interface DenyLevel {

	@NotNull String achievementName();
	@NotNull String level();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy