Lines Matching refs:domain

80      * For each domain, a hashtable contains the instances with
96 private final String domain;
167 * WARNING: domain name is not considered here because it is supposed
291 // Extract the domain name.
294 // Default domain case
296 dom = domain;
301 return null; // No domain containing registered object names
316 * Construct a new repository with the given default domain.
318 public Repository(String domain) {
319 this(domain,true);
323 * Construct a new repository with the given default domain.
325 public Repository(String domain, boolean fairLock) {
330 if (domain != null && domain.length() != 0)
331 this.domain = domain.intern(); // we use == domain later on...
333 this.domain = ServiceName.DOMAIN;
335 // Creates a new hashtable for the default domain
336 domainTb.put(this.domain, new HashMap<String,NamedObject>());
355 // in particular the default domain may be like this
393 // Extract the domain name.
397 // Set domain to default if domain is empty and not already set
399 name = Util.newObjectName(domain + name.toString());
401 // Do we have default domain ?
402 if (dom == domain) { // ES: OK (dom & domain are interned)
404 dom = domain;
424 "Repository: domain name cannot be JMImplementation"));
427 // If domain does not already exist, add it to the hash table
518 // "domain:*", "domain:[key=value],*" : names in the specified domain
553 // All names in default domain
555 final Map<String,NamedObject> moiTb = domainTb.get(domain);
573 // Pattern matching in the domain name (*, ?)
617 // Extract domain name.
620 // Default domain case
621 if (dom.length() == 0) dom = domain;
625 // Find the domain subtable
639 // No more object for this domain, we remove this domain hashtable
643 // set a new default domain table (always present)
647 if (dom == domain) // ES: OK dom and domain are interned.
648 domainTb.put(domain, new HashMap<String,NamedObject>());
668 * Gets the name of the domain currently used by default in the
671 * @return A string giving the name of the default domain name.
674 return domain;