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

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

Go to download

The Esfinge Gamification is a matadata based framework applicable to systems requiring an gamification logic, regardless of the domain.

There is a newer version: 1.2.8
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy