Class DiscoveryService.ServerInfo
- java.lang.Object
-
- ca.cgjennings.apps.arkham.plugins.debugging.DiscoveryService.ServerInfo
-
- Enclosing class:
- DiscoveryService
public static final class DiscoveryService.ServerInfo extends java.lang.Object
Provides information about discovered debug servers.
-
-
Field Summary
Fields Modifier and Type Field Description java.net.InetAddress
address
Address needed to connect to the server.java.lang.String
buildNumber
Build number for the app instance debugged by the server.java.lang.String
hash
Hash of the app instance address debugged by the server; the hash and/or process id can uniquely identify an app instance.java.lang.String
pid
Process ID of the app instance debugged by the server, if available.int
port
Port needed to connect to the server.java.lang.String
testBundle
If the app instance debugged by the server is running in plug-in test mode, this is the bundle or bundle list passed on the command line.java.lang.String
version
Version string for the app instance debugged by the server.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
address
public final java.net.InetAddress address
Address needed to connect to the server.
-
port
public final int port
Port needed to connect to the server.
-
pid
public final java.lang.String pid
Process ID of the app instance debugged by the server, if available.
-
hash
public final java.lang.String hash
Hash of the app instance address debugged by the server; the hash and/or process id can uniquely identify an app instance.
-
buildNumber
public final java.lang.String buildNumber
Build number for the app instance debugged by the server.
-
version
public final java.lang.String version
Version string for the app instance debugged by the server.
-
testBundle
public final java.lang.String testBundle
If the app instance debugged by the server is running in plug-in test mode, this is the bundle or bundle list passed on the command line.
-
-