Home | History | Annotate | Download | only in net

Lines Matching defs:host

28  * A syntactically valid host specifier, suitable for use in a URI.
32 * <p>Because this class is intended to represent host specifiers which can
39 * to a real or accessible host. Only syntactic and pattern-based checks are
80 final String host = parsedHost.getHostText();
88 addr = InetAddresses.forString(host);
100 final InternetDomainName domain = InternetDomainName.from(host);
107 "Domain name does not have a recognized public suffix: " + host);
128 new ParseException("Invalid host specifier: " + specifier, 0);
168 * Returns a string representation of the host specifier suitable for
169 * inclusion in a URI. If the host specifier is a domain name, the
172 * result will be usable in the host part of a URI.