Back to project page android-sdk.
The source code is released under:
MIT License
If you think the Android project android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.qiniu.android.http; //from w w w . j a v a 2 s. c o m /** * http ???? */ public class Proxy { public final String hostAddress; public final int port; public final String user; public final String password; /** * * @param hostAddress ?????????IP???proxy.com, 192.168.1.1 * @param port ???? * @param user ?????????null * @param password ?????????null */ public Proxy(String hostAddress, int port, String user, String password) { this.hostAddress = hostAddress; this.port = port; this.user = user; this.password = password; } }