API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management.remote. JMXServiceURL View Javadoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680

/*
 * @(#)JMXServiceURL.java	1.31 05/12/30
 * 
 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */


package javax.management.remote;

import java.io.IOException;
import java.io.Serializable;
import java.net.InetAddress;
import java.net.MalformedURLException;
import java.net.UnknownHostException;
import java.util.BitSet;
import java.util.StringTokenizer;

import com.sun.jmx.remote.util.ClassLogger;
import com.sun.jmx.remote.util.EnvHelp;

/**
 * <p>The address of a JMX API connector server.  Instances of this class
 * are immutable.</p>
 *
 * <p>The address is an <em>Abstract Service URL</em> for SLP, as
 * defined in RFC 2609 and amended by RFC 3111.  It must look like
 * this:</p>
 *
 * <blockquote>
 *
 * <code>service:jmx:<em>protocol</em>:<em>sap</em></code>
 *
 * </blockquote>
 *
 * <p>Here, <code><em>protocol</em></code> is the transport
 * protocol to be used to connect to the connector server.  It is
 * a string of one or more ASCII characters, each of which is a
 * letter, a digit, or one of the characters <code>+</code> or
 * <code>-</code>.  The first character must be a letter.
 * Uppercase letters are converted into lowercase ones.</p>
 *
 * <p><code><em>sap</em></code> is the address at which the connector
 * server is found.  This address uses a subset of the syntax defined
 * by RFC 2609 for IP-based protocols.  It is a subset because the
 * <code>user@host</code> syntax is not supported.</p>
 *
 * <p>The other syntaxes defined by RFC 2609 are not currently
 * supported by this class.</p>
 *
 * <p>The supported syntax is:</p>
 *
 * <blockquote>
 *
 * <code>//<em>[host[</em>:<em>port]][url-path]</em></code>
 *
 * </blockquote>
 *
 * <p>Square brackets <code>[]</code> indicate optional parts of
 * the address.  Not all protocols will recognize all optional
 * parts.</p>
 *
 * <p>The <code><em>host</em></code> is a host name, an IPv4 numeric
 * host address, or an IPv6 numeric address enclosed in square
 * brackets.</p>
 *
 * <p>The <code><em>port</em></code> is a decimal port number.  0
 * means a default or anonymous port, depending on the protocol.</p>
 *
 * <p>The <code><em>host</em></code> and <code><em>port</em></code>
 * can be omitted.  The <code><em>port</em></code> cannot be supplied
 * without a <code><em>host</em></code>.</p>
 *
 * <p>The <code><em>url-path</em></code>, if any, begins with a slash
 * (<code>/</code>) or a semicolon (<code>;</code>) and continues to
 * the end of the address.  It can contain attributes using the
 * semicolon syntax specified in RFC 2609.  Those attributes are not
 * parsed by this class and incorrect attribute syntax is not
 * detected.</p>
 *
 * <p>Although it is legal according to RFC 2609 to have a
 * <code><em>url-path</em></code> that begins with a semicolon, not
 * all implementations of SLP allow it, so it is recommended to avoid
 * that syntax.</p>
 *
 * <p>Case is not significant in the initial
 * <code>service:jmx:<em>protocol</em></code> string or in the host
 * part of the address.  Depending on the protocol, case can be
 * significant in the <code><em>url-path</em></code>.</p>
 *
 * @see <a
 * href="ftp://ftp.rfc-editor.org/in-notes/rfc2609.txt">RFC 2609,
 * "Service Templates and <code>Service:</code> Schemes"</a>
 * @see <a
 * href="ftp://ftp.rfc-editor.org/in-notes/rfc3111.txt">RFC 3111,
 * "Service Location Protocol Modifications for IPv6"</a>
 *
 * @since 1.5
 * @since.unbundled 1.0
 */
public class JMXServiceURL implements Serializable {

    private static final long serialVersionUID = 8173364409860779292L;

    /**
     * <p>Constructs a <code>JMXServiceURL</code> by parsing a Service URL
     * string.</p>
     *
     * @param serviceURL the URL string to be parsed.
     *
     * @exception NullPointerException if <code>serviceURL</code> is
     * null.
     *
     * @exception MalformedURLException if <code>serviceURL</code>
     * does not conform to the syntax for an Abstract Service URL or
     * if it is not a valid name for a JMX Remote API service.  A
     * <code>JMXServiceURL</code> must begin with the string
     * <code>"service:jmx:"</code> (case-insensitive).  It must not
     * contain any characters that are not printable ASCII characters.
     */
    public JMXServiceURL(String serviceURL) throws MalformedURLException {
	final int serviceURLLength = serviceURL.length();

	/* Check that there are no non-ASCII characters in the URL,
	   following RFC 2609.  */
	for (int i = 0; i < serviceURLLength; i++) {
	    char c = serviceURL.charAt(i);
	    if (c < 32 || c >= 127) {
		throw new MalformedURLException("Service URL contains " +
						"non-ASCII character 0x" +
						Integer.toHexString(c));
	    }
	}

	// Parse the required prefix
	final String requiredPrefix = "service:jmx:";
	final int requiredPrefixLength = requiredPrefix.length();
	if (!serviceURL.regionMatches(true, // ignore case
				      0,    // serviceURL offset
				      requiredPrefix,
				      0,    // requiredPrefix offset
				      requiredPrefixLength)) {
	    throw new MalformedURLException("Service URL must start with " +
					    requiredPrefix);
	}

	int[] ptr = new int[1];

	// Parse the protocol name
	final int protoStart = requiredPrefixLength;
	final int protoEnd = indexOf(serviceURL, ':', protoStart);
	this.protocol =
	    serviceURL.substring(protoStart, protoEnd).toLowerCase();

	if (!serviceURL.regionMatches(protoEnd, "://", 0, 3)) {
	    throw new MalformedURLException("Missing \"://\" after " +
					    "protocol name");
	}

	// Parse the host name
	final int hostStart = protoEnd + 3;
	final int hostEnd;
	if (hostStart < serviceURLLength
	    && serviceURL.charAt(hostStart) == '[') {
	    hostEnd = serviceURL.indexOf(']', hostStart) + 1;
	    if (hostEnd == 0)
		throw new MalformedURLException("Bad host name: [ without ]");
	    this.host = serviceURL.substring(hostStart + 1, hostEnd - 1);
	    if (!isNumericIPv6Address(this.host)) {
		throw new MalformedURLException("Address inside [...] must " +
						"be numeric IPv6 address");
	    }
	} else {
	    hostEnd =
		indexOfFirstNotInSet(serviceURL, hostNameBitSet, hostStart);
	    this.host = serviceURL.substring(hostStart, hostEnd);
	}

	// Parse the port number
	final int portEnd;
	if (hostEnd < serviceURLLength && serviceURL.charAt(hostEnd) == ':') {
	    if (this.host.length() == 0) {
		throw new MalformedURLException("Cannot give port number " +
						"without host name");
	    }
	    final int portStart = hostEnd + 1;
	    portEnd =
		indexOfFirstNotInSet(serviceURL, numericBitSet, portStart);
	    final String portString = serviceURL.substring(portStart, portEnd);
	    try {
		this.port = Integer.parseInt(portString);
	    } catch (NumberFormatException e) {
		throw new MalformedURLException("Bad port number: \"" +
						portString + "\": " + e);
	    }
	} else {
	    portEnd = hostEnd;
	    this.port = 0;
	}

	// Parse the URL path
	final int urlPathStart = portEnd;
	if (urlPathStart < serviceURLLength)
	    this.urlPath = serviceURL.substring(urlPathStart);
	else
	    this.urlPath = "";

	validate();
    }

    /**
     * <p>Constructs a <code>JMXServiceURL</code> with the given protocol,
     * host, and port.  This constructor is equivalent to
     * {@link #JMXServiceURL(String, String, int, String)
     * JMXServiceURL(protocol, host, port, null)}.</p>
     *
     * @param protocol the protocol part of the URL.  If null, defaults
     * to <code>jmxmp</code>.
     *
     * @param host the host part of the URL.  If null, defaults to the
     * local host name, as determined by
     * <code>InetAddress.getLocalHost().getHostName()</code>.  If it
     * is a numeric IPv6 address, it can optionally be enclosed in
     * square brackets <code>[]</code>.
     *
     * @param port the port part of the URL.
     *
     * @exception MalformedURLException if one of the parts is
     * syntactically incorrect, or if <code>host</code> is null and it
     * is not possible to find the local host name, or if
     * <code>port</code> is negative.
     */
    public JMXServiceURL(String protocol, String host, int port)
	    throws MalformedURLException {
	this(protocol, host, port, null);
    }

    /**
     * <p>Constructs a <code>JMXServiceURL</code> with the given parts.
     *
     * @param protocol the protocol part of the URL.  If null, defaults
     * to <code>jmxmp</code>.
     *
     * @param host the host part of the URL.  If null, defaults to the
     * local host name, as determined by
     * <code>InetAddress.getLocalHost().getHostName()</code>.  If it
     * is a numeric IPv6 address, it can optionally be enclosed in
     * square brackets <code>[]</code>.
     *
     * @param port the port part of the URL.
     *
     * @param urlPath the URL path part of the URL.  If null, defaults to
     * the empty string.
     *
     * @exception MalformedURLException if one of the parts is
     * syntactically incorrect, or if <code>host</code> is null and it
     * is not possible to find the local host name, or if
     * <code>port</code> is negative.
     */
    public JMXServiceURL(String protocol, String host, int port,
			 String urlPath)
	    throws MalformedURLException {
	if (protocol == null)
	    protocol = "jmxmp";

	if (host == null) {
	    InetAddress local;
	    try {
		local = InetAddress.getLocalHost();
	    } catch (UnknownHostException e) {
		throw new MalformedURLException("Local host name unknown: " +
						e);
	    }

	    host = local.getHostName();

	    /* We might have a hostname that violates DNS naming
	       rules, for example that contains an `_'.  While we
	       could be strict and throw an exception, this is rather
	       user-hostile.  Instead we use its numerical IP address.
	       We can only reasonably do this for the host==null case.
	       If we're given an explicit host name that is illegal we
	       have to reject it.  (Bug 5057532.)  */
	    try {
		validateHost(host);
	    } catch (MalformedURLException e) {
		if (logger.fineOn()) {
		    logger.fine("JMXServiceURL",
				"Replacing illegal local host name " +
				host + " with numeric IP address " +
				"(see RFC 1034)", e);
		}
		host = local.getHostAddress();
		/* Use the numeric address, which could be either IPv4
		   or IPv6.  validateHost will accept either.  */
	    }
	}

	if (host.startsWith("[")) {
	    if (!host.endsWith("]")) {
		throw new MalformedURLException("Host starts with [ but " +
						"does not end with ]");
	    }
	    host = host.substring(1, host.length() - 1);
	    if (!isNumericIPv6Address(host)) {
		throw new MalformedURLException("Address inside [...] must " +
						"be numeric IPv6 address");
	    }
	    if (host.startsWith("["))
		throw new MalformedURLException("More than one [[...]]");
	}

	this.protocol = protocol.toLowerCase();
	this.host = host;
	this.port = port;

	if (urlPath == null)
	    urlPath = "";
	this.urlPath = urlPath;

	validate();
    }

    private void validate() throws MalformedURLException {

	// Check protocol

	final int protoEnd = indexOfFirstNotInSet(protocol, protocolBitSet, 0);
	if (protoEnd == 0 || protoEnd < protocol.length()
	    || !alphaBitSet.get(protocol.charAt(0))) {
	    throw new MalformedURLException("Missing or invalid protocol " +
					    "name: \"" + protocol + "\"");
	}

	// Check host

	validateHost();

	// Check port

	if (port < 0)
	    throw new MalformedURLException("Bad port: " + port);

	// Check URL path

	if (urlPath.length() > 0) {
	    if (!urlPath.startsWith("/") && !urlPath.startsWith(";"))
		throw new MalformedURLException("Bad URL path: " + urlPath);
	}
    }

    private void validateHost() throws MalformedURLException {
	if (host.length() == 0) {
	    if (port != 0) {
		throw new MalformedURLException("Cannot give port number " +
						"without host name");
	    }
	    return;
	}

	validateHost(host);
    }

    private static void validateHost(String h)
	    throws MalformedURLException {

	if (isNumericIPv6Address(h)) {
	    /* We assume J2SE >= 1.4 here.  Otherwise you can't
	       use the address anyway.  We can't call
	       InetAddress.getByName without checking for a
	       numeric IPv6 address, because we mustn't try to do
	       a DNS lookup in case the address is not actually
	       numeric.  */
	    try {
		InetAddress.getByName(h);
	    } catch (Exception e) {
		/* We should really catch UnknownHostException
		   here, but a bug in JDK 1.4 causes it to throw
		   ArrayIndexOutOfBoundsException, e.g. if the
		   string is ":".  */
		MalformedURLException bad =
		    new MalformedURLException("Bad IPv6 address: " + h);
		EnvHelp.initCause(bad, e);
		throw bad;
	    }
	} else {
	    /* Tiny state machine to check valid host name.  This
	       checks the hostname grammar from RFC 1034 (DNS),
	       page 11.  A hostname is a dot-separated list of one
	       or more labels, where each label consists of
	       letters, numbers, or hyphens.  A label cannot begin
	       or end with a hyphen.  Empty hostnames are not
	       allowed.  Note that numeric IPv4 addresses are a
	       special case of this grammar.

	       The state is entirely captured by the last
	       character seen, with a virtual `.' preceding the
	       name.  We represent any alphanumeric character by
	       `a'.
		
	       We need a special hack to check, as required by the
	       RFC 2609 (SLP) grammar, that the last component of
	       the hostname begins with a letter.  Respecting the
	       intent of the RFC, we only do this if there is more
	       than one component.  If your local hostname begins
	       with a digit, we don't reject it.  */
	    final int hostLen = h.length();
	    char lastc = '.';
	    boolean sawDot = false;
	    char componentStart = 0;

	    loop:
	    for (int i = 0; i < hostLen; i++) {
		char c = h.charAt(i);
		boolean isAlphaNumeric = alphaNumericBitSet.get(c);
		if (lastc == '.')
		    componentStart = c;
		if (isAlphaNumeric)
		    lastc = 'a';
		else if (c == '-') {
		    if (lastc == '.')
			break; // will throw exception
		    lastc = '-';
		} else if (c == '.') {
		    sawDot = true;
		    if (lastc != 'a')
			break; // will throw exception
		    lastc = '.';
		} else {
		    lastc = '.'; // will throw exception
		    break;
		}
	    }

	    try {
		if (lastc != 'a')
		    throw randomException;
		if (sawDot && !alphaBitSet.get(componentStart)) {
		    /* Must be a numeric IPv4 address.  In addition to
		       the explicitly-thrown exceptions, we can get
		       NoSuchElementException from the calls to
		       tok.nextToken and NumberFormatException from
		       the call to Integer.parseInt.  Using exceptions
		       for control flow this way is a bit evil but it
		       does simplify things enormously.  */
		    StringTokenizer tok = new StringTokenizer(h, ".", true);
		    for (int i = 0; i < 4; i++) {
			String ns = tok.nextToken();
			int n = Integer.parseInt(ns);
			if (n < 0 || n > 255)
			    throw randomException;
			if (i < 3 && !tok.nextToken().equals("."))
			    throw randomException;
		    }
		    if (tok.hasMoreTokens())
			throw randomException;
		}
	    } catch (Exception e) {
		throw new MalformedURLException("Bad host: \"" + h + "\"");
	    }
	}
    }

    private static final Exception randomException = new Exception();


    /**
     * <p>The protocol part of the Service URL.
     *
     * @return the protocol part of the Service URL.  This is never null.
     */
    public String getProtocol() {
	return protocol;
    }

    /**
     * <p>The host part of the Service URL.  If the Service URL was
     * constructed with the constructor that takes a URL string
     * parameter, the result is the substring specifying the host in
     * that URL.  If the Service URL was constructed with a
     * constructor that takes a separate host parameter, the result is
     * the string that was specified.  If that string was null, the
     * result is
     * <code>InetAddress.getLocalHost().getHostName()</code>.</p>
     *
     * <p>In either case, if the host was specified using the
     * <code>[...]</code> syntax for numeric IPv6 addresses, the
     * square brackets are not included in the return value here.</p>
     *
     * @return the host part of the Service URL.  This is never null.
     */
    public String getHost() {
	return host;
    }

    /**
     * <p>The port of the Service URL.  If no port was
     * specified, the returned value is 0.</p>
     *
     * @return the port of the Service URL, or 0 if none.
     */
    public int getPort() {
	return port;
    }

    /**
     * <p>The URL Path part of the Service URL.  This is an empty
     * string, or a string beginning with a slash (<code>/</code>), or
     * a string beginning with a semicolon (<code>;</code>).
     *
     * @return the URL Path part of the Service URL.  This is never
     * null.
     */
    public String getURLPath() {
	return urlPath;
    }

    /**
     * <p>The string representation of this Service URL.  If the value
     * returned by this method is supplied to the
     * <code>JMXServiceURL</code> constructor, the resultant object is
     * equal to this one.</p>
     *
     * <p>The <code><em>host</em></code> part of the returned string
     * is the value returned by {@link #getHost()}.  If that value
     * specifies a numeric IPv6 address, it is surrounded by square
     * brackets <code>[]</code>.</p>
     *
     * <p>The <code><em>port</em></code> part of the returned string
     * is the value returned by {@link #getPort()} in its shortest
     * decimal form.  If the value is zero, it is omitted.</p>
     *
     * @return the string representation of this Service URL.
     */
    public String toString() {
	/* We don't bother synchronizing the access to toString.  At worst,
	   n threads will independently compute and store the same value.  */
	if (toString != null)
	    return toString;
	StringBuffer buf = new StringBuffer("service:jmx:");
	buf.append(getProtocol()).append("://");
	final String getHost = getHost();
	if (isNumericIPv6Address(getHost))
	    buf.append('[').append(getHost).append(']');
	else
	    buf.append(getHost);
	final int getPort = getPort();
	if (getPort != 0)
	    buf.append(':').append(getPort);
	buf.append(getURLPath());
	toString = buf.toString();
	return toString;
    }

    /**
     * <p>Indicates whether some other object is equal to this one.
     * This method returns true if and only if <code>obj</code> is an
     * instance of <code>JMXServiceURL</code> whose {@link
     * #getProtocol()}, {@link #getHost()}, {@link #getPort()}, and
     * {@link #getURLPath()} methods return the same values as for
     * this object.  The values for {@link #getProtocol()} and {@link
     * #getHost()} can differ in case without affecting equality.
     *
     * @param obj the reference object with which to compare.
     *
     * @return <code>true</code> if this object is the same as the
     * <code>obj</code> argument; <code>false</code> otherwise.
     */
    public boolean equals(Object obj) {
	if (!(obj instanceof JMXServiceURL))
	    return false;
	JMXServiceURL u = (JMXServiceURL) obj;
	return
	    (u.getProtocol().equalsIgnoreCase(getProtocol()) &&
	     u.getHost().equalsIgnoreCase(getHost()) &&
	     u.getPort() == getPort() &&
	     u.getURLPath().equals(getURLPath()));
    }

    public int hashCode() {
	return toString().hashCode();
    }

    /* True if this string, assumed to be a valid argument to
     * InetAddress.getByName, is a numeric IPv6 address.
     */
    private static boolean isNumericIPv6Address(String s) {
	// address contains colon if and only if it's a numeric IPv6 address
	return (s.indexOf(':') >= 0);
    }

    // like String.indexOf but returns string length not -1 if not present
    private static int indexOf(String s, char c, int fromIndex) {
	int index = s.indexOf(c, fromIndex);
	if (index < 0)
	    return s.length();
	else
	    return index;
    }

    private static int indexOfFirstNotInSet(String s, BitSet set,
					    int fromIndex) {
	final int slen = s.length();
	int i = fromIndex;
	while (true) {
	    if (i >= slen)
		break;
	    char c = s.charAt(i);
	    if (c >= 128)
		break; // not ASCII
	    if (!set.get(c))
		break;
	    i++;
	}
	return i;
    }

    private final static BitSet alphaBitSet = new BitSet(128);
    private final static BitSet numericBitSet = new BitSet(128);
    private final static BitSet alphaNumericBitSet = new BitSet(128);
    private final static BitSet protocolBitSet = new BitSet(128);
    private final static BitSet hostNameBitSet = new BitSet(128);
    static {
	/* J2SE 1.4 adds lots of handy methods to BitSet that would
	   allow us to simplify here, e.g. by not writing loops, but
	   we want to work on J2SE 1.3 too.  */

	for (char c = '0'; c <= '9'; c++)
	    numericBitSet.set(c);

	for (char c = 'A'; c <= 'Z'; c++)
	    alphaBitSet.set(c);
	for (char c = 'a'; c <= 'z'; c++)
	    alphaBitSet.set(c);

	alphaNumericBitSet.or(alphaBitSet);
	alphaNumericBitSet.or(numericBitSet);

	protocolBitSet.or(alphaNumericBitSet);
	protocolBitSet.set('+');
	protocolBitSet.set('-');

	hostNameBitSet.or(alphaNumericBitSet);
	hostNameBitSet.set('-');
	hostNameBitSet.set('.');
    }

    private static void addCharsToBitSet(BitSet set, String chars) {
	for (int i = 0; i < chars.length(); i++)
	    set.set(chars.charAt(i));
    }

    /**
     * The value returned by {@link #getProtocol()}.
     */
    private final String protocol;

    /**
     * The value returned by {@link #getHost()}.
     */
    private final String host;

    /**
     * The value returned by {@link #getPort()}.
     */
    private final int port;

    /**
     * The value returned by {@link #getURLPath()}.
     */
    private final String urlPath;

    /**
     * Cached result of {@link #toString()}.
     */
    private transient String toString;

    private static final ClassLogger logger =
	new ClassLogger("javax.management.remote.misc", "JMXServiceURL");
}

Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar