Package org.drinkless.tdlib
Class TdApi.ProxyTypeHttp
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.ProxyType
-
- org.drinkless.tdlib.TdApi.ProxyTypeHttp
-
- Enclosing class:
- TdApi
public static class TdApi.ProxyTypeHttp extends TdApi.ProxyType
A HTTP transparent proxy server.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.booleanhttpOnlyPass true if the proxy supports only HTTP requests and doesn't support transparent TCP connections via HTTP CONNECT method.StringpasswordPassword for logging in; may be empty.StringusernameUsername for logging in; may be empty.
-
Constructor Summary
Constructors Constructor Description ProxyTypeHttp()A HTTP transparent proxy server.ProxyTypeHttp(String username, String password, boolean httpOnly)A HTTP transparent proxy server.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
username
public String username
Username for logging in; may be empty.
-
password
public String password
Password for logging in; may be empty.
-
httpOnly
public boolean httpOnly
Pass true if the proxy supports only HTTP requests and doesn't support transparent TCP connections via HTTP CONNECT method.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ProxyTypeHttp
public ProxyTypeHttp()
A HTTP transparent proxy server.
-
ProxyTypeHttp
public ProxyTypeHttp(String username, String password, boolean httpOnly)
A HTTP transparent proxy server.- Parameters:
username- Username for logging in; may be empty.password- Password for logging in; may be empty.httpOnly- Pass true if the proxy supports only HTTP requests and doesn't support transparent TCP connections via HTTP CONNECT method.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-