| package de.ids_mannheim.korap.web; | |
| import javax.ws.rs.HttpMethod; | |
| import java.lang.annotation.ElementType; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
| /** | |
| * @author hanl | |
| * @date 03/07/2014 | |
| */ | |
| @Target({ ElementType.METHOD }) | |
| @Retention(RetentionPolicy.RUNTIME) | |
| @HttpMethod("TRACE") | |
| public @interface TRACE {} |