net.sf.esfinge.gamification.event.annotation.WhenWinReward Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gamification Show documentation
Show all versions of gamification Show documentation
The Esfinge Gamification is a matadata based framework applicable to systems requiring an gamification logic, regardless of the domain.
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.WhenWinRewardEventListener;
@Retention(RUNTIME)
@Target(METHOD)
@EventListenerImplementation(WhenWinRewardEventListener.class)
public @interface WhenWinReward {
String value();
}