Uses of Class
com.facilita.fc.web.Protocol
-
Packages that use Protocol 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 Protocol in com.facilita.fc.web
Methods in com.facilita.fc.web that return Protocol Modifier and Type Method Description static Protocol
Protocol. find(java.lang.String aName)
Finds the Protocol object with the specifiedname
Protocol
Url. getProtocol()
Gets theProtocol
used for thisUrl
.Protocol
WebBrowserScript. getProtocol(java.lang.String key, java.lang.String defaultValue)
Gets aProtocol
by looking up aString
in this Virtual User's data dictionary.Protocol
WebBrowserVirtualUser. getProtocol(java.lang.String key, java.lang.String defaultValue)
Gets aProtocol
by looking up aString
in this Virtual User's data dictionary.static Protocol
Protocol. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Protocol[]
Protocol. 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 Protocol Modifier and Type Method Description void
Request. addSubRequest(Protocol protocol, IpEndPoint ipEndPoint, java.lang.String path)
Adds a URL to the list of sub-requests that will be fetched from the web server by this request.void
Request. ignoreSubRequest(Protocol protocol, IpEndPoint ipEndPoint, java.lang.String path)
Specifies a URL that will be ignored when fetching sub-requests from the web server.Constructors in com.facilita.fc.web with parameters of type Protocol Constructor Description Url(Protocol protocol, IpEndPoint ipEndPoint)
Creates aUrl
object with the specifiedprotocol
andipEndPoint
(host/port).Url(Protocol protocol, IpEndPoint ipEndPoint, java.lang.String path)
Creates aUrl
object with the specifiedprotocol
,ipEndPoint
(host/port) andpath
.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.Url(Protocol protocol, IpEndPoint ipEndPoint, java.lang.String path, java.lang.String queryText)
Creates aUrl
object with the specifiedprotocol
,ipEndPoint
(host/port),path
andqueryText String
.Url(Protocol protocol, java.lang.String host)
Creates aUrl
object with the specifiedprotocol
andhost
.Url(Protocol protocol, java.lang.String host, java.lang.String path)
Creates aUrl
object with the specifiedprotocol
,host
andpath
.
-