top.lingkang.sessioncore.wrapper.FinalServletRequestWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of final-session-core Show documentation
Show all versions of final-session-core Show documentation
final-session 一个轻量级分布式session框架
package top.lingkang.sessioncore.wrapper;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
import javax.servlet.http.HttpSession;
/**
* @author lingkang
* Created by 2022/1/26
*/
public class FinalServletRequestWrapper extends HttpServletRequestWrapper {
private HttpSession session;
public FinalServletRequestWrapper(HttpServletRequest request) {
super(request);
}
public HttpSession getSession() {
return session;
}
public void setSession(HttpSession session){
this.session=session;
}
}