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

net.sf.esfinge.gamification.event.annotation.WhenReachPoints Maven / Gradle / Ivy

package net.sf.esfinge.gamification.event.annotation;

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 net.sf.esfinge.gamification.event.listener.WhenReachPointsEventListener;

@Retention(RUNTIME)
@Target(METHOD)
@EventListenerImplementation(WhenReachPointsEventListener.class)
public @interface WhenReachPoints {
	public String name();
	public int value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy