Uses of Class
jodd.http.ProxyInfo
-
Packages that use ProxyInfo Package Description jodd.http Tiny, raw and simple socket-based HTTP client.jodd.http.net Implementations and core HTTP stuff. -
-
Uses of ProxyInfo in jodd.http
Methods in jodd.http that return ProxyInfo Modifier and Type Method Description static ProxyInfoProxyInfo. directProxy()Creates directProxy.static ProxyInfoProxyInfo. httpProxy(java.lang.String proxyAddress, int proxyPort, java.lang.String proxyUser, java.lang.String proxyPassword)Creates HTTP proxy.static ProxyInfoProxyInfo. socks4Proxy(java.lang.String proxyAddress, int proxyPort, java.lang.String proxyUser)Creates SOCKS4 proxy.static ProxyInfoProxyInfo. socks5Proxy(java.lang.String proxyAddress, int proxyPort, java.lang.String proxyUser, java.lang.String proxyPassword)Creates SOCKS5 proxy.Methods in jodd.http with parameters of type ProxyInfo Modifier and Type Method Description HttpSessionHttpSession. setProxyInfo(ProxyInfo proxyInfo)Defines proxy for a sessionvoidHttpConnectionProvider. useProxy(ProxyInfo proxyInfo)Specifiesproxyfor provide to use. -
Uses of ProxyInfo in jodd.http.net
Fields in jodd.http.net declared as ProxyInfo Modifier and Type Field Description private ProxyInfoHTTPProxySocketFactory. proxyprotected ProxyInfoSocketHttpConnectionProvider. proxyprivate ProxyInfoSocks4ProxySocketFactory. proxyprivate ProxyInfoSocks5ProxySocketFactory. proxyMethods in jodd.http.net with parameters of type ProxyInfo Modifier and Type Method Description protected javax.net.SocketFactorySocketHttpConnectionProvider. resolveSocketFactory(ProxyInfo proxy, boolean ssl, boolean trustAllCertificates, int connectionTimeout)Returns socket factory based on proxy type and SSL requirements.protected javax.net.SocketFactorySSLSocketHttpConnectionProvider. resolveSocketFactory(ProxyInfo proxy, boolean ssl, boolean trustAllCertificates, int connectionTimeout)voidSocketHttpConnectionProvider. useProxy(ProxyInfo proxyInfo)Defines proxy to use for created sockets.Constructors in jodd.http.net with parameters of type ProxyInfo Constructor Description HTTPProxySocketFactory(ProxyInfo proxy, int connectionTimeout)Socks4ProxySocketFactory(ProxyInfo proxy, int connectionTimeout)Socks5ProxySocketFactory(ProxyInfo proxy, int connectionTimeout)
-