com.github.datalking.web.mvc.condition.RequestCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-mvc Show documentation
Show all versions of play-mvc Show documentation
simple mvc framework based on java servlet.
The newest version!
package com.github.datalking.web.mvc.condition;
import javax.servlet.http.HttpServletRequest;
/**
* 保存从request提取出的用于匹配handler的条件
*
* @author yaoo on 4/28/18
*/
public interface RequestCondition {
T combine(T other);
T getMatchingCondition(HttpServletRequest request);
int compareTo(T other, HttpServletRequest request);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy