Home | History | Annotate | Download | only in impl

Lines Matching refs:Instance

191         this._name = map.get(Fields.Instance);
239 qualifiedNameMap.put(Fields.Instance, name);
306 qualifiedNameMap.put(Fields.Instance, name);
336 // Instance
337 String instance = (qualifiedNameMap.containsKey(Fields.Instance) ? qualifiedNameMap.get(Fields.Instance) : "");
338 if ((instance == null) || (instance.length() == 0)) {
339 instance = "";
340 // throw new IllegalArgumentException("The instance name component of a fully qualified service cannot be empty.");
342 instance = removeSeparators(instance);
343 checkedQualifiedNameMap.put(Fields.Instance, instance);
412 * Sets the service instance name.
415 * unqualified service instance name, such as <code>foobar</code>
430 String instance = this.getName();
432 // return (instance.length() > 0 ? instance + "." : "") + (application.length() > 0 ? "_" + application + "." : "") + (protocol.length() > 0 ? "_" + protocol + (subtype.length() > 0 ? ",_" + subtype.toLowerCase() + "." : ".") : "") + domain
434 return (instanceinstance + "." : "") + (application.length() > 0 ? "_" + application + "." : "") + (protocol.length() > 0 ? "_" + protocol + "." : "") + domain + ".";
742 map.put(Fields.Instance, this.getName());