com.katujo.web.utils.Route Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of katujo-web-utils Show documentation
Show all versions of katujo-web-utils Show documentation
Util classes for a Java web application with a SQL database back end that communicates with clients using JSON.
The newest version!
//Namespace
package com.katujo.web.utils;
//Java imports
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicates that the class is a route.
* @author Johan Hertz
*
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Route {}