java.lang.Object | |
↳ | sun.jvmstat.monitor.HostIdentifier |
An abstraction that identifies a target host and communications
protocol. The HostIdentifier, or hostid, provides a convenient string
representation of the information needed to locate and communicate with
a target host. The string, based on a URI
, may specify the
the communications protocol, host name, and protocol specific information
for a target host. The format for a HostIdentifier string is:
[protocol:][[//]hostname][:port][/servername]There are actually no required components of this string, as a null string is interpreted to mean a local connection to the local host and is equivalent to the string local://localhost. The components of the HostIdentifier are:
protocol - The communications protocol. If omitted, and a hostname is not specified, then default local protocol, local:, is assumed. If the protocol is omitted and a hostname is specified then the default remote protocol, rmi: is assumed.
hostname - The hostname. If omitted, then localhost is assumed. If the protocol is also omitted, then default local protocol local: is also assumed. If the hostname is not omitted but the protocol is omitted, then the default remote protocol, rmi: is assumed.
port - The port for the communications protocol. Treatment of the port parameter is implementation (protocol) specific. It is unused by the default local protocol, local:. For the default remote protocol, rmi:, port indicates the port number of the rmiregistry on the target host and defaults to port 1099.
servername - The treatment of the Path, Query, and Fragment components of the HostIdentifier are implementation (protocol) dependent. These components are ignored by the default local protocol, local:. For the default remote protocol, rmi, the Path component is interpreted as the name of the RMI remote object. The Query component may contain an access mode specifier ?mode= specifying "r" or "rw" access (write access currently ignored). The Fragment part is ignored.
All HostIdentifier objects are represented as absolute, hierarchical URIs. The constructors accept relative URIs, but these will generally be transformed into an absolute URI specifying a default protocol. A HostIdentifier differs from a URI in that certain contractions and illicit syntactical constructions are allowed. The following are all valid HostIdentifier strings:
< null > - transformed into "//localhost"
localhost - transformed into "//localhost"
hostname - transformed into "//hostname"
hostname:port - transformed into "//hostname:port"
proto:hostname - transformed into "proto://hostname"
proto:hostname:port - transformed into "proto://hostname:port"
proto://hostname:port
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Create a HostIdentifier instance from a string value.
| |||||||||||
Create a HostIdentifier instance from component parts of a URI.
| |||||||||||
Create a HostIdentifier instance from a VmIdentifier.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Test for quality with other objects.
| |||||||||||
Return the Fragment part of this HostIdentifier.
| |||||||||||
Return the Host part of this HostIdentifier.
| |||||||||||
Return the mode indicated in this HostIdentifier.
| |||||||||||
Return the Path part of this HostIdentifier.
| |||||||||||
Return the Port for of this HostIdentifier.
| |||||||||||
Return the Query part of this HostIdentifier.
| |||||||||||
Return the Scheme, or protocol, portion of this HostIdentifier.
| |||||||||||
Return the Scheme Specific Part of this HostIdentifier.
| |||||||||||
Return the URI associated with the HostIdentifier.
| |||||||||||
Return the User Info part of this HostIdentifier.
| |||||||||||
Return the hash code for this HostIdentifier.
| |||||||||||
Resolve a VmIdentifier with this HostIdentifier.
| |||||||||||
Convert to a string representation.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Create a HostIdentifier instance from a string value.
uriString | a string representing a target host. The syntax of the string must conform to the rules specified in the class documentation. |
---|
URISyntaxException | Thrown when the uriString or its canonical form is poorly formed. This exception may get encapsulated into a MonitorException in a future version. |
---|
Create a HostIdentifier instance from component parts of a URI.
scheme | the getScheme() component of a URI. |
---|---|
authority | the getAuthority() component of a URI. |
path | the getPath() component of a URI. |
query | the getQuery() component of a URI. |
fragment | the getFragment() component of a URI. |
URISyntaxException | Thrown when the uriString or its canonical form is poorly formed. This exception may get encapsulated into a MonitorException in a future version. |
---|
Create a HostIdentifier instance from a VmIdentifier. The necessary components of the VmIdentifier are extracted and reassembled into a HostIdentifier. If a "file:" scheme (protocol) is specified, the the returned HostIdentifier will always be equivalent to HostIdentifier("file://localhost").
vmid | the VmIdentifier use to construct the HostIdentifier. |
---|
Test for quality with other objects.
object | the object to be test for equality. |
---|
Return the Fragment part of this HostIdentifier.
Return the Host part of this HostIdentifier.
Return the mode indicated in this HostIdentifier.
Return the Path part of this HostIdentifier.
Return the Port for of this HostIdentifier.
Return the Query part of this HostIdentifier.
Return the Scheme, or protocol, portion of this HostIdentifier.
Return the Scheme Specific Part of this HostIdentifier.
Return the User Info part of this HostIdentifier.
Return the hash code for this HostIdentifier. The hash code is identical to the hash code for the contained URI.
Resolve a VmIdentifier with this HostIdentifier. A VmIdentifier, such as 1234 or 1234@hostname or any other string that omits certain components of the URI string may be valid, but is certainly incomplete. They are missing critical information for identifying the the communications protocol, target host, or other parameters. A VmIdentifier of this form is considered unresolved. This method uses components of the HostIdentifier to resolve the missing components of the VmIdentifier.
Specified components of the unresolved VmIdentifier take precedence over their HostIdentifier counterparts. For example, if the VmIdentifier indicates 1234@hostname:2099 and the HostIdentifier indicates rmi://hostname:1099/, then the resolved VmIdentifier will be rmi://1234@hostname:2099. Any component not explicitly specified or assumed by the HostIdentifier, will remain unresolved in resolved VmIdentifier.
A VmIdentifier specifying a file: scheme (protocol), is not changed in any way by this method.
vmid | the unresolved VmIdentifier. |
---|
Convert to a string representation. Conversion is identical to calling getURI().toString(). This may change in a future release.