Uses of Class
com.facilita.fc.web.QueryData
-
Packages that use QueryData 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 QueryData in com.facilita.fc.web
Methods in com.facilita.fc.web that return QueryData Modifier and Type Method Description QueryData
Url. getQueryData()
Get a QueryData object representing the query data section of thisUrl
.Methods in com.facilita.fc.web with parameters of type QueryData Modifier and Type Method Description void
QueryData. add(java.lang.String name, QueryData queryData)
Adds a name/value pair to the end of the list, using a value extracted from anotherQueryData
object.static long
QueryData. getCPtr(QueryData obj)
For internal use only.void
QueryData. insert(java.lang.String name, QueryData queryData, int index)
Inserts a name/value pair into the list at the specifiedindex
, using a value extracted from anotherQueryData
object.Url
Url. withQuery(QueryData queryData)
Creates a newUrl
object using the attributes of thisUrl
, but with the specifiedQueryData
object (replacing the existing query data if present).Url
Url. withQuery(QueryData queryData, java.lang.String unsafeCharacters)
Creates a newUrl
object using the attributes of thisUrl
, but with the specifiedQueryData
object (replacing the existing query data if present).Constructors in com.facilita.fc.web with parameters of type QueryData Constructor Description Url(Protocol protocol, IpEndPoint ipEndPoint, java.lang.String path, QueryData queryData)
Creates aUrl
object with the specifiedprotocol
,ipEndPoint
(host/port),path
andQueryData
object.Url(Protocol protocol, IpEndPoint ipEndPoint, java.lang.String path, QueryData queryData, java.lang.String unsafeCharacters)
Creates aUrl
object with the specifiedprotocol
,ipEndPoint
(host/port),path
andQueryData
object.
-