Files
WebServer/src/main/java/org/openautonomousconnection/webserver/api/Route.java

19 lines
363 B
Java
Raw Normal View History

2026-01-19 14:23:53 +01:00
package org.openautonomousconnection.webserver.api;
import java.lang.annotation.*;
/**
* Declares a route path for a server-side Java WebPage.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Route {
/**
* The absolute route path (must start with '/').
*
* @return route path
*/
String path();
}