Uses of Class
com.facilita.fc.jni.IpEndPoint
-
Packages that use IpEndPoint Package Description com.facilita.fc.jni Contains useful utility classes.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 IpEndPoint in com.facilita.fc.jni
Methods in com.facilita.fc.jni that return IpEndPoint Modifier and Type Method Description static IpEndPoint
IpEndPoint. getAll()
Returns anIpEndPoint
object which has the IP address that represents all IP addresses (usually only used in server scripts).static IpEndPoint
IpEndPoint. getAny()
Returns a wildcardIpEndPoint
object.static IpEndPoint
IpEndPoint. getBroadcast()
Returns anIpEndPoint
object which has an IP address that represents the broadcast address.static IpEndPoint
IpEndPoint. getLocal()
Returns anIpEndPoint
object with the localhost IP address (127.0.0.1).static IpEndPoint
IpEndPoint. getNone()
Returns a noneIpEndPoint
object.IpEndPoint
IpEndPoint. withPort(int port)
Creates a copy of thisIpEndPoint
object and sets the specified port number.Methods in com.facilita.fc.jni with parameters of type IpEndPoint Modifier and Type Method Description static long
IpEndPoint. getCPtr(IpEndPoint obj)
For internal use only.Constructors in com.facilita.fc.jni with parameters of type IpEndPoint Constructor Description IpEndPoint(IpEndPoint arg0)
Creates a copy of the specifiedIpEndPoint
object -
Uses of IpEndPoint in com.facilita.fc.web
Methods in com.facilita.fc.web that return IpEndPoint Modifier and Type Method Description IpEndPoint
Url. getIpEndPoint()
Gets theIpEndPoint
pointed to by thisUrl
.IpEndPoint
WebBrowser. getLocalIpEndPoint()
Gets the localIpEndPoint
to use when making a connection to a web server.Methods in com.facilita.fc.web with parameters of type IpEndPoint 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.void
WebBrowser. setLocalIpEndPoint(IpEndPoint localIpEndPoint)
Sets the localIpEndPoint
to use when making a connection to a web server.Constructors in com.facilita.fc.web with parameters of type IpEndPoint 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
.
-