Class MockWebSession

  • All Implemented Interfaces:
    WebSession

    public class MockWebSession
    extends Object
    implements WebSession
    Implementation of WebSession that delegates to a session instance obtained via InMemoryWebSessionStore.

    This is intended for use with the session(WebSession) method of the MockServerWebExchange builder, eliminating the need to use WebSessionManager or WebSessionStore altogether.

    Since:
    5.1
    Author:
    Rossen Stoyanchev
    • Method Detail

      • isStarted

        public boolean isStarted()
        Description copied from interface: WebSession
        Whether a session with the client has been started explicitly via WebSession.start() or implicitly by adding session attributes. If "false" then the session id is not sent to the client and the WebSession.save() method is essentially a no-op.
        Specified by:
        isStarted in interface WebSession
      • changeSessionId

        public reactor.core.publisher.Mono<VoidchangeSessionId()
        Description copied from interface: WebSession
        Generate a new id for the session and update the underlying session storage to reflect the new id. After a successful call WebSession.getId() reflects the new session id.
        Specified by:
        changeSessionId in interface WebSession
        Returns:
        completion notification (success or error)
      • invalidate

        public reactor.core.publisher.Mono<Voidinvalidate()
        Description copied from interface: WebSession
        Invalidate the current session and clear session storage.
        Specified by:
        invalidate in interface WebSession
        Returns:
        completion notification (success or error)
      • save

        public reactor.core.publisher.Mono<Voidsave()
        Description copied from interface: WebSession
        Save the session through the WebSessionStore as follows:
        • If the session is new (i.e. created but never persisted), it must have been started explicitly via WebSession.start() or implicitly by adding attributes, or otherwise this method should have no effect.
        • If the session was retrieved through the WebSessionStore, the implementation for this method must check whether the session was invalidated and if so return an error.

        Note that this method is not intended for direct use by applications. Instead it is automatically invoked just before the response is committed.

        Specified by:
        save in interface WebSession
        Returns:
        Mono to indicate completion with success or error
      • isExpired

        public boolean isExpired()
        Description copied from interface: WebSession
        Return true if the session expired after maxIdleTime elapsed.

        Typically expiration checks should be automatically made when a session is accessed, a new WebSession instance created if necessary, at the start of request processing so that applications don't have to worry about expired session by default.

        Specified by:
        isExpired in interface WebSession