类 SimpleSessionStatus
java.lang.Object
cn.taketoday.web.bind.support.SimpleSessionStatus
- 所有已实现的接口:
SessionStatus
Simple implementation of the
SessionStatus interface,
keeping the complete flag as an instance variable.- 从以下版本开始:
- 4.0 2022/4/8 23:24
- 作者:
- Juergen Hoeller, Harry Yang
-
字段概要
字段 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明booleanReturn whether the current handler's session processing has been marked as complete.voidMark the current handler's session processing as complete, allowing for cleanup of session attributes.
-
字段详细资料
-
complete
private boolean complete
-
-
构造器详细资料
-
SimpleSessionStatus
public SimpleSessionStatus()
-
-
方法详细资料
-
setComplete
public void setComplete()从接口复制的说明:SessionStatusMark the current handler's session processing as complete, allowing for cleanup of session attributes.- 指定者:
setComplete在接口中SessionStatus
-
isComplete
public boolean isComplete()从接口复制的说明:SessionStatusReturn whether the current handler's session processing has been marked as complete.- 指定者:
isComplete在接口中SessionStatus
-