java.lang.Object | |
↳ | com.ardic.android.parcelables.ProxyProperties |
This class was deprecated
in API level 5.
in Android Lollipop
A container class for the http proxy info
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | LOCAL_EXCL_LIST | ||||||||||
String | LOCAL_HOST | ||||||||||
int | LOCAL_PORT |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Only used in PacManager after local proxy is bound.
| |||||||||||
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns comma separeated exclusion list.
| |||||||||||
Returns defined host name.
| |||||||||||
Returns defined PACFile url.
| |||||||||||
Returns defined port number.
| |||||||||||
Returns generated internet socket address.
| |||||||||||
Queries given url if it is excluded or not.
| |||||||||||
Queries if this ProxyProperties is valid one or not.
| |||||||||||
Converts ProxyProperties as a
java.net.Proxy . | |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.os.Parcelable
|
Parameters | |
---|---|
exclList |
String :
Comma separated exclusion list
|
Only used in PacManager after local proxy is bound.
Returns comma separeated exclusion list.
Returns | |
---|---|
String |
comma separeted String if exclusion list was set else null
|
Returns defined host name.
Returns | |
---|---|
String |
String if host was set else null
|
Returns defined PACFile url.
Returns | |
---|---|
String |
String if PACFileUrl was set else null
|
Returns defined port number.
Returns | |
---|---|
int |
int if port number was set else null
|
Returns generated internet socket address.
Returns | |
---|---|
InetSocketAddress |
InetSocketAddress if host address and port number was set else null
|
Queries given url if it is excluded or not.
Parameters | |
---|---|
url |
String :
Internet address |
Returns | |
---|---|
boolean |
true if it is excluded else false
|
Queries if this ProxyProperties is valid one or not.
Returns | |
---|---|
boolean |
true if it is valide else false
|
Converts ProxyProperties as a java.net.Proxy
.
Returns | |
---|---|
Proxy |
java.net.Proxy
|