Package com.biglybt.core.proxy
Interface AEProxyFactory.PluginProxy
-
- All Known Implementing Classes:
AEPluginProxyHandler.PluginProxyImpl
- Enclosing class:
- AEProxyFactory
public static interface AEProxyFactory.PluginProxy
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
AEProxyFactory.PluginProxy.PluginProxyStatusListener
-
Field Summary
Fields Modifier and Type Field Description static int
ST_BAD
static int
ST_OK
static int
ST_UNKNOWN
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addListener(AEProxyFactory.PluginProxy.PluginProxyStatusListener l)
AEProxyFactory.PluginProxy
getChildProxy(java.lang.String reason, java.net.URL url)
boolean
getConnected()
java.lang.Throwable
getError()
java.lang.String
getHost()
int
getPort()
java.net.Proxy
getProxy()
int
getStatus()
java.lang.String
getTarget()
java.net.URL
getURL()
java.lang.String
getURLHostRewrite()
void
setOK(boolean good)
-
-
-
Field Detail
-
ST_UNKNOWN
static final int ST_UNKNOWN
- See Also:
- Constant Field Values
-
ST_OK
static final int ST_OK
- See Also:
- Constant Field Values
-
ST_BAD
static final int ST_BAD
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTarget
java.lang.String getTarget()
-
getChildProxy
AEProxyFactory.PluginProxy getChildProxy(java.lang.String reason, java.net.URL url)
-
getProxy
java.net.Proxy getProxy()
-
getURL
java.net.URL getURL()
-
getURLHostRewrite
java.lang.String getURLHostRewrite()
-
getHost
java.lang.String getHost()
-
getPort
int getPort()
-
setOK
void setOK(boolean good)
-
getStatus
int getStatus()
-
getConnected
boolean getConnected()
-
getError
java.lang.Throwable getError()
-
addListener
void addListener(AEProxyFactory.PluginProxy.PluginProxyStatusListener l)
-
-