Ejemplo n.º 1
0
 private void buildFromHostString(String hostString) {
   this.clientId = new RPubClientId(RPubUtil.parseRPubClientId(hostString));
   this.hostName = RPubUtil.parseRPubHostName(hostString);
   this.domain = RPubUtil.parseRPubHostDomain(hostString);
   this.port = RPubUtil.parseRPubHostPort(hostString);
   this.maxByteIn = RPubUtil.kiloBytesToBytes(RPubUtil.parseRPubHostKByteIn(hostString));
   this.maxByteOut = RPubUtil.kiloBytesToBytes(RPubUtil.parseRPubHostKByteOut(hostString));
 }