nz.ac.auckland.syllabus.ApiDoc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of syllabus-core Show documentation
Show all versions of syllabus-core Show documentation
Overly complicated protocol-agnostic transmission layer for an event-based API implementation
package nz.ac.auckland.syllabus;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Author: Marnix
*
* This annotation will help you define the purpose of your event
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface ApiDoc {
String value() default "";
}