cn.khthink.easyapi.annotation.action.Proxy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EasyApi Show documentation
Show all versions of EasyApi Show documentation
A RESTFUL Framework for JavaWeb
The newest version!
package cn.khthink.easyapi.annotation.action;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by KH on 2017/1/5.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Proxy {
/**
* 代理器名字
* @return String
*/
String proxy();
/**
* 处理器标识
* @return String
*/
String actionTag();
/**
* 代理目标处理器
* @return String
*/
String actionName();
}