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

cn.antcore.security.session.SessionStrategy Maven / Gradle / Ivy

The newest version!
package cn.antcore.security.session;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

/**
 * Session策略
 * 
*

Created by Hong.

*

2021/3/24

**/ public interface SessionStrategy { /** * 获取SessionId生成策略 * @return */ SessionIdStrategy getSessionIdStrategy(); /** * 获取Session * @return 返回Session */ HttpSession getSession(HttpServletRequest request, HttpServletResponse response); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy