Uses of Class
com.facilita.fc.web.HttpMethod
-
Packages that use HttpMethod 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 HttpMethod in com.facilita.fc.web
Methods in com.facilita.fc.web that return HttpMethod Modifier and Type Method Description static HttpMethod
HttpMethod. find(java.lang.String aName)
Converts aString
into anHttpMethod
object.HttpMethod
Request. getMethod()
HttpMethod
Response. getMethod()
Gets theHttpMethod
that was used to send theRequest
.static HttpMethod
HttpMethod. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HttpMethod[]
HttpMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.facilita.fc.web with parameters of type HttpMethod Modifier and Type Method Description Request
WebBrowser. createRequest(HttpMethod method, Url url)
Creates aRequest
object that can be used to send an HTTP request to the web server.Request
WebBrowser. createRequest(HttpMethod method, Url url, int reference)
Creates aRequest
object that can be used to send an HTTP request to the web server, specifying a unique identifier that can be used to track the request.
-