Lines Matching refs:domain

41  * <p> The labels in a domain name correspond to JNDI atomic names.
46 * representation of a domain name consists of the labels, escaped as
52 * <p> <em>Host names</em> are a subset of domain names.
55 * these rules may be valid domain names, they will not be usable by a
66 * When the work on internationalizing domain names has stabilized
71 * textual representation of a domain name. The character sequence
79 * otherwise not allowed in a domain name. Note that escape characters
90 * object representing the one-label domain name <tt>a\.b</tt>, and
108 // If non-null, the domain name represented by this DnsName.
109 private String domain = "";
111 // The labels of this domain name, as a list of strings. Index 0
116 // The number of octets needed to carry this domain name in a DNS
123 * Constructs a <tt>DnsName</tt> representing the empty domain name.
129 * Constructs a <tt>DnsName</tt> representing a given domain name.
131 * @param name the domain name to parse
152 domain = n.domain;
167 if (domain == null) {
177 domain = buf.toString();
179 return domain;
183 * Does this domain name follow <em>host name</em> syntax?
284 domain = null; // invalidate "domain"
301 "Empty label must be the last label in a domain name");
315 domain = null; // invalidate "domain"
337 "Empty label must be the last label in a domain name");
348 // Preserve "domain" if we're appending or prepending,
351 domain = dn.domain;
352 } else if (domain == null || dn.domain == null) {
353 domain = null;
355 domain += (dn.domain.equals(".") ? "" : ".") + dn.domain;
357 domain = dn.domain + (domain.equals(".") ? "" : ".") + domain;
359 domain = null;
420 * Parses a domain name, setting the values of instance vars accordingly.
449 // all other domain names, the number of labels is one greater
455 domain = name; // do this last, since add() sets it to null
460 * at a given position within a domain name.
586 * Serializes only the domain name string, for compactness and to avoid
589 * @serialdata The domain name string.
603 "Invalid name: " + domain);