001package io.dinject.controller;
002
003import java.lang.annotation.Retention;
004import java.lang.annotation.Target;
005
006import static java.lang.annotation.ElementType.TYPE;
007import static java.lang.annotation.RetentionPolicy.RUNTIME;
008
009/**
010 * Specify the path mapping request to the controller.
011 */
012@Target(value=TYPE)
013@Retention(value=RUNTIME)
014public @interface Path {
015  String value();
016}