Class SimpleSessionStatus
java.lang.Object
org.springframework.web.bind.support.SimpleSessionStatus
- All Implemented Interfaces:
SessionStatus
Simple implementation of the
SessionStatus
interface,
keeping the complete
flag as an instance variable.- Since:
- 2.5
- Author:
- Juergen Hoeller
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Return whether the current handler's session processing has been marked as complete.void
Mark the current handler's session processing as complete, allowing for cleanup of session attributes.
-
Constructor Details
-
SimpleSessionStatus
public SimpleSessionStatus()
-
-
Method Details
-
setComplete
public void setComplete()Description copied from interface:SessionStatus
Mark the current handler's session processing as complete, allowing for cleanup of session attributes.- Specified by:
setComplete
in interfaceSessionStatus
-
isComplete
public boolean isComplete()Description copied from interface:SessionStatus
Return whether the current handler's session processing has been marked as complete.- Specified by:
isComplete
in interfaceSessionStatus
-