Uses of Class
com.facilita.fc.web.HttpStatus
-
Packages that use HttpStatus Package Description com.facilita.fc.web The eggPlant Performance Web Java API makes it easy to perform load tests against web sites and services, by providing classes and methods that simulate the behaviour of a web browser sending/receiving HTTP(s) requests to/from a web server. -
-
Uses of HttpStatus in com.facilita.fc.web
Fields in com.facilita.fc.web declared as HttpStatus Modifier and Type Field Description static HttpStatus
HttpStatus. NOT_SET
Methods in com.facilita.fc.web that return HttpStatus Modifier and Type Method Description static HttpStatus
HttpStatus. find(int code)
Finds theHttpStatus
with the specifiedcode
.static HttpStatus
HttpStatus. find(java.lang.String code)
Finds theHttpStatus
with the specifiedcode
.HttpStatus
Response. getResult()
Gets the HTTP status code received from the server when thisResponse
was served.Methods in com.facilita.fc.web with parameters of type HttpStatus Modifier and Type Method Description static long
HttpStatus. getCPtr(HttpStatus obj)
For internal use only.HttpStatusCategory
Request. getHttpStatusCategory(HttpStatus status)
Returns the registered status category for the given HTTP status.boolean
HttpStatus. isInRange(HttpStatus from, HttpStatus to)
Returnstrue
if thisHttpStatus
is ordered between the supplied pair ofHttpStatus
objects.void
Request. setHttpStatusCategory(HttpStatus status, HttpStatusCategory category)
Registers the provided HTTP status code range against the predefined category.boolean
Response. verifyResult(HttpStatus expectedResult)
Verify that the response code of this Response matches the specifiedexpectedResult
.boolean
Response. verifyResult(HttpStatus expectedResult, ActionType action)
Verify that the response code of this Response matches the specifiedexpectedResult
, and takes the specifiedaction
if it does not.
-