package de.jpaw.bonaparte.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation to be placed as a marker in external APIs to define a URL path component. * */ @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.TYPE }) public @interface UrlPath { public String value(); }