Class MockServerWebExchange.Builder
java.lang.Object
org.springframework.mock.web.server.MockServerWebExchange.Builder
- Enclosing class:
 - MockServerWebExchange
 
Builder for a 
MockServerWebExchange.- Since:
 - 5.1
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionbuild()Build theMockServerWebExchangeinstance.session(WebSession session) Set the session to use for the exchange.sessionManager(WebSessionManager sessionManager) Provide aWebSessionManagerinstance to use with the exchange. 
- 
Constructor Details
- 
Builder
 
 - 
 - 
Method Details
- 
session
Set the session to use for the exchange.This method is mutually exclusive with
sessionManager(WebSessionManager).- Parameters:
 session- the session to use- See Also:
 
 - 
sessionManager
Provide aWebSessionManagerinstance to use with the exchange.This is mutually exclusive with
session(WebSession).- Parameters:
 sessionManager- the session manager to use
 - 
build
Build theMockServerWebExchangeinstance. 
 -