This commit is contained in:
Arjen Poutsma 2008-11-07 10:22:43 +00:00
parent aeced8b1a9
commit 477543241f
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
package org.springframework.web.bind.annotation;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Documented;
/**
* @author Arjen Poutsma
* @since 3.0
*/
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface RequestMappings {
RequestMapping[] annotations();
}