Uses of Class
org.mockserver.configuration.ClientConfiguration
Packages that use ClientConfiguration
-
Uses of ClientConfiguration in org.mockserver.client
Constructors in org.mockserver.client with parameters of type ClientConfigurationModifierConstructorDescriptionMockServerClient(ClientConfiguration configuration, String host, int port) Start the client communicating to a MockServer at the specified host and port for example:MockServerClient(ClientConfiguration configuration, String host, int port, String contextPath) Start the client communicating to a MockServer at the specified host and port and contextPath for example:MockServerClient(ClientConfiguration configuration, CompletableFuture<Integer> portFuture) Start the client communicating to a MockServer on localhost at the port specified with the Future -
Uses of ClientConfiguration in org.mockserver.configuration
Methods in org.mockserver.configuration that return ClientConfigurationModifier and TypeMethodDescriptionstatic ClientConfigurationClientConfiguration.clientConfiguration()static ClientConfigurationClientConfiguration.clientConfiguration(Configuration configuration) ClientConfiguration.clientNioEventLoopThreadCount(Integer clientNioEventLoopThreadCount) Client Netty worker thread pool size for handling requests and response.ClientConfiguration.controlPlaneJWTAuthenticationJWKSource(String controlPlaneJWTAuthenticationJWKSource) ClientConfiguration.controlPlaneJWTAuthenticationRequired(Boolean controlPlaneJWTAuthenticationRequired) ClientConfiguration.controlPlanePrivateKeyPath(String controlPlanePrivateKeyPath) ClientConfiguration.controlPlaneTLSMutualAuthenticationCAChain(String controlPlaneTLSMutualAuthenticationCAChain) ClientConfiguration.controlPlaneTLSMutualAuthenticationRequired(Boolean controlPlaneTLSMutualAuthenticationRequired) ClientConfiguration.controlPlaneX509CertificatePath(String controlPlaneX509CertificatePath) ClientConfiguration.maxFutureTimeoutInMillis(Long maxFutureTimeoutInMillis) Maximum time allowed in milliseconds for any future to wait, for example when waiting for a response over a web socket callback.ClientConfiguration.maxSocketTimeoutInMillis(Long maxSocketTimeoutInMillis) Maximum time in milliseconds allowed for a response from a socketClientConfiguration.maxWebSocketExpectations(Integer maxWebSocketExpectations) Maximum number of remote (not the same JVM) method callbacks (i.e. web sockets) registered for expectations.ClientConfiguration.webSocketClientEventLoopThreadCount(Integer webSocketClientEventLoopThreadCount) Client Netty worker thread pool size for handling requests and response.