26 if (null == address ||
"".equals(address))
throw new ParseException(getString(
"busAddressBlank"), 0);
27 if (Debug.debug) Debug.print(Debug.VERBOSE,
"Parsing bus address: " + address);
28 String[] ss = address.split(
":", 2);
29 if (ss.length < 2)
throw new ParseException(getString(
"busAddressInvalid") + address, 0);
31 if (Debug.debug) Debug.print(Debug.VERBOSE,
"Transport type: " +
type);
32 String[] ps = ss[1].split(
",");
35 String[] kv = p.split(
"=", 2);
38 if (Debug.debug) Debug.print(Debug.VERBOSE,
"Transport options: " +
parameters);
Map< String, String > parameters
Definition: BusAddress.java:23
String type
Definition: BusAddress.java:22