Uses of Class
org.mockserver.model.HttpError

Packages that use HttpError
org.mockserver.client.serialization.java   
org.mockserver.client.serialization.model   
org.mockserver.mock   
org.mockserver.model   
 

Uses of HttpError in org.mockserver.client.serialization.java
 

Methods in org.mockserver.client.serialization.java with parameters of type HttpError
 String HttpErrorToJavaSerializer.serializeAsJava(int numberOfSpacesToIndent, HttpError httpError)
           
 

Uses of HttpError in org.mockserver.client.serialization.model
 

Methods in org.mockserver.client.serialization.model that return HttpError
 HttpError HttpErrorDTO.buildObject()
           
 

Constructors in org.mockserver.client.serialization.model with parameters of type HttpError
HttpErrorDTO(HttpError httpError)
           
 

Uses of HttpError in org.mockserver.mock
 

Methods in org.mockserver.mock that return HttpError
 HttpError Expectation.getHttpError()
           
 

Methods in org.mockserver.mock with parameters of type HttpError
 Expectation Expectation.thenError(HttpError httpError)
           
 

Uses of HttpError in org.mockserver.model
 

Methods in org.mockserver.model that return HttpError
 HttpError HttpError.applyDelay()
           
static HttpError HttpError.error()
           
 HttpError HttpError.withDelay(Delay delay)
          The delay before responding with this request as a Delay object, for example new Delay(TimeUnit.SECONDS, 3)
 HttpError HttpError.withDelay(TimeUnit timeUnit, long value)
          The delay before responding with this request as a Delay object, for example new Delay(TimeUnit.SECONDS, 3)
 HttpError HttpError.withDropConnection(Boolean dropConnection)
          Forces the connection to be dropped without any response being returned
 HttpError HttpError.withResponseBytes(byte[] responseBytes)
          The raw response to be returned, allowing the expectation to specify any invalid response as a raw byte[]
 



Copyright © 2017. All rights reserved.