cn.antcore.security.session.SessionStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-security Show documentation
Show all versions of spring-boot-starter-security Show documentation
This is spring-boot-starter-security.
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);
}