cn.khthink.easyapi.protocol.IEasyProtocol 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.protocol;
/*
Create by KH at 2017/11/10 14:14
CopyRight © 2016-2018 鲨软科技, All Rights Reserved.
*/
import cn.khthink.easyapi.api.bean.ActionBean;
import cn.khthink.easyapi.bean.Request;
/**
* 协议接口
*
* @author kh
*/
public interface IEasyProtocol {
/**
* 协议验证
*
* @param action 处理器信息
* @param request 请求
* @return boolean
*/
boolean verify(ActionBean action,Request request);
}