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

com.katujo.web.utils.Route Maven / Gradle / Ivy

Go to download

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 {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy