All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.yydf.struts.annotation.Request Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.github.yydf.struts.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.ElementType;

@Retention(RUNTIME)
@Target(value = { ElementType.TYPE, ElementType.METHOD })
public @interface Request {
	String value() default "";

	HttpMethod method() default HttpMethod.GET;

	public enum HttpMethod {
		GET, POST
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy