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 SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturn 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.
- 
Constructor Details- 
SimpleSessionStatuspublic SimpleSessionStatus()
 
- 
- 
Method Details- 
setCompletepublic void setComplete()Description copied from interface:SessionStatusMark the current handler's session processing as complete, allowing for cleanup of session attributes.- Specified by:
- setCompletein interface- SessionStatus
 
- 
isCompletepublic boolean isComplete()Description copied from interface:SessionStatusReturn whether the current handler's session processing has been marked as complete.- Specified by:
- isCompletein interface- SessionStatus
 
 
-