| de.schlund.pfixcore.workflow.Context
All known Subclasses: de.schlund.pfixcore.workflow.ContextImpl,
Context | public interface Context (Code) | | author: Sebastian Marsching |
finalPageIsRunning | boolean finalPageIsRunning()(Code) | | |
flowIsRunning | boolean flowIsRunning()(Code) | | |
forceStopAtNextStep | void forceStopAtNextStep(boolean forcestop)(Code) | | |
getPropertiesForCurrentPageRequest | Properties getPropertiesForCurrentPageRequest()(Code) | | |
isCurrentPageFlowRequestedByUser | boolean isCurrentPageFlowRequestedByUser()(Code) | | |
isCurrentPageRequestInCurrentFlow | boolean isCurrentPageRequestInCurrentFlow()(Code) | | |
isJumpToPageFlowSet | boolean isJumpToPageFlowSet()(Code) | | |
isJumpToPageSet | boolean isJumpToPageSet()(Code) | | |
isProhibitContinueSet | boolean isProhibitContinueSet()(Code) | | |
jumpToPageIsRunning | boolean jumpToPageIsRunning()(Code) | | |
markSessionForCleanup | void markSessionForCleanup()(Code) | | Tells the servlet that the session for this context is not longer needed
and can be deleted. However, there is no guarantee when the session
will be deleted. Usually, there will be some delay, between the call of
this method and the actual invalidation taking place, so the output page
of the current request can still be rendered.
Do not use this method if you are concerned about security! As the
session is not invalidated immediately, session data is still available for
some time after calling this method. If you keep sensitive data in the
session (e.g. login data), you should reset the corresponding context
resources instead of using this method. This method is only provided for
memory reasons (so that memory allocated by this session can be freed, if
it is not needed any more).
|
prohibitContinue | void prohibitContinue()(Code) | | |
setCurrentPageFlow | void setCurrentPageFlow(String pageflow)(Code) | | |
setJumpToPageFlow | void setJumpToPageFlow(String pageflow)(Code) | | |
setVariantForThisRequestOnly | void setVariantForThisRequestOnly(Variant variant)(Code) | | |
stateMustSupplyFullDocument | boolean stateMustSupplyFullDocument()(Code) | | |
|
|