CompositeNamepublic class CompositeName extends Object implements NameThis class represents a composite name -- a sequence of
component names spanning multiple namespaces.
Each component is a string name from the namespace of a
naming system. If the component comes from a hierarchical
namespace, that component can be further parsed into
its atomic parts by using the CompoundName class.
The components of a composite name are numbered. The indexes of a
composite name with N components range from 0 up to, but not including, N.
This range may be written as [0,N).
The most significant component is at index 0.
An empty composite name has no components.
JNDI Composite Name Syntax
JNDI defines a standard string representation for composite names. This
representation is the concatenation of the components of a composite name
from left to right using the component separator (a forward
slash character (/)) to separate each component.
The JNDI syntax defines the following meta characters:
- escape (backward slash \),
- quote characters (single (') and double quotes (")), and
- component separator (forward slash character (/)).
Any occurrence of a leading quote, an escape preceding any meta character,
an escape at the end of a component, or a component separator character
in an unquoted component must be preceded by an escape character when
that component is being composed into a composite name string.
Alternatively, to avoid adding escape characters as described,
the entire component can be quoted using matching single quotes
or matching double quotes. A single quote occurring within a double-quoted
component is not considered a meta character (and need not be escaped),
and vice versa.
When two composite names are compared, the case of the characters
is significant.
A leading component separator (the composite name string begins with
a separator) denotes a leading empty component (a component consisting
of an empty string).
A trailing component separator (the composite name string ends with
a separator) denotes a trailing empty component.
Adjacent component separators denote an empty component.
Composite Name Examples
This table shows examples of some composite names. Each row shows
the string form of a composite name and its corresponding structural form
(CompositeName).
String Name |
CompositeName |
""
|
{} (the empty name == new CompositeName("") == new CompositeName())
|
"x"
|
{"x"}
|
"x/y"
|
{"x", "y"} |
"x/" |
{"x", ""} |
"/x" |
{"", "x"} |
"/" |
{""} |
"//" |
{"", ""} |
"/x/" |
{"", "x", ""} |
"x//y" |
{"x", "", "y"} |
Composition Examples
Here are some composition examples. The right column shows composing
string composite names while the left column shows composing the
corresponding CompositeNames. Notice that composing the
string forms of two composite names simply involves concatenating
their string forms together.
String Names |
CompositeNames |
"x/y" + "/" = x/y/
|
{"x", "y"} + {""} = {"x", "y", ""}
|
"" + "x" = "x"
|
{} + {"x"} = {"x"}
|
"/" + "x" = "/x"
|
{""} + {"x"} = {"", "x"}
|
"x" + "" + "" = "x"
|
{"x"} + {} + {} = {"x"}
|
Multithreaded Access
A CompositeName instance is not synchronized against concurrent
multithreaded access. Multiple threads trying to access and modify a
CompositeName should lock the object. |
Fields Summary |
---|
private transient NameImpl | impl | private static final long | serialVersionUIDUse serialVersionUID from JNDI 1.1.1 for interoperability |
Constructors Summary |
---|
protected CompositeName(Enumeration comps)Constructs a new composite name instance using the components
specified by 'comps'. This protected method is intended to be
to be used by subclasses of CompositeName when they override
methods such as clone(), getPrefix(), getSuffix().
impl = new NameImpl(null, comps); // null means use default syntax
| public CompositeName(String n)Constructs a new composite name instance by parsing the string n
using the composite name syntax (left-to-right, slash separated).
The composite name syntax is described in detail in the class
description.
impl = new NameImpl(null, n); // null means use default syntax
| public CompositeName()Constructs a new empty composite name. Such a name returns true
when isEmpty() is invoked on it.
impl = new NameImpl(null); // null means use default syntax
|
Methods Summary |
---|
public javax.naming.Name | add(java.lang.String comp)Adds a single component to the end of this composite name.
impl.add(comp);
return this;
| public javax.naming.Name | add(int posn, java.lang.String comp)Adds a single component at a specified position within this
composite name.
Components of this composite name at or after the index of the new
component are shifted up by one (away from index 0) to accommodate
the new component.
impl.add(posn, comp);
return this;
| public javax.naming.Name | addAll(javax.naming.Name suffix)Adds the components of a composite name -- in order -- to the end of
this composite name.
if (suffix instanceof CompositeName) {
impl.addAll(suffix.getAll());
return this;
} else {
throw new InvalidNameException("Not a composite name: " +
suffix.toString());
}
| public javax.naming.Name | addAll(int posn, javax.naming.Name n)Adds the components of a composite name -- in order -- at a specified
position within this composite name.
Components of this composite name at or after the index of the first
new component are shifted up (away from index 0)
to accommodate the new components.
if (n instanceof CompositeName) {
impl.addAll(posn, n.getAll());
return this;
} else {
throw new InvalidNameException("Not a composite name: " +
n.toString());
}
| public java.lang.Object | clone()Generates a copy of this composite name.
Changes to the components of this composite name won't
affect the new copy and vice versa.
return (new CompositeName(getAll()));
| public int | compareTo(java.lang.Object obj)Compares this CompositeName with the specified Object for order.
Returns a
negative integer, zero, or a positive integer as this Name is less
than, equal to, or greater than the given Object.
If obj is null or not an instance of CompositeName, ClassCastException
is thrown.
See equals() for what it means for two composite names to be equal.
If two composite names are equal, 0 is returned.
Ordering of composite names follows the lexicographical rules for
string comparison, with the extension that this applies to all
the components in the composite name. The effect is as if all the
components were lined up in their specified ordered and the
lexicographical rules applied over the two line-ups.
If this composite name is "lexicographically" lesser than obj,
a negative number is returned.
If this composite name is "lexicographically" greater than obj,
a positive number is returned.
if (!(obj instanceof CompositeName)) {
throw new ClassCastException("Not a CompositeName");
}
return impl.compareTo(((CompositeName)obj).impl);
| public boolean | endsWith(javax.naming.Name n)Determines whether a composite name is a suffix of this composite name.
A composite name 'n' is a suffix if it it is equal to
getSuffix(size()-n.size())--in other words, this
composite name ends with 'n'.
If n is null or not a composite name, false is returned.
if (n instanceof CompositeName) {
return (impl.endsWith(n.size(), n.getAll()));
} else {
return false;
}
| public boolean | equals(java.lang.Object obj)Determines whether two composite names are equal.
If obj is null or not a composite name, false is returned.
Two composite names are equal if each component in one is equal
to the corresponding component in the other. This implies
both have the same number of components, and each component's
equals() test against the corresponding component in the other name
returns true.
return (obj != null &&
obj instanceof CompositeName &&
impl.equals(((CompositeName)obj).impl));
| public java.lang.String | get(int posn)Retrieves a component of this composite name.
return (impl.get(posn));
| public java.util.Enumeration | getAll()Retrieves the components of this composite name as an enumeration
of strings.
The effects of updates to this composite name on this enumeration
is undefined.
return (impl.getAll());
| public javax.naming.Name | getPrefix(int posn)Creates a composite name whose components consist of a prefix of the
components in this composite name. Subsequent changes to
this composite name does not affect the name that is returned.
Enumeration comps = impl.getPrefix(posn);
return (new CompositeName(comps));
| public javax.naming.Name | getSuffix(int posn)Creates a composite name whose components consist of a suffix of the
components in this composite name. Subsequent changes to
this composite name does not affect the name that is returned.
Enumeration comps = impl.getSuffix(posn);
return (new CompositeName(comps));
| public int | hashCode()Computes the hash code of this composite name.
The hash code is the sum of the hash codes of individual components
of this composite name.
return impl.hashCode();
| public boolean | isEmpty()Determines whether this composite name is empty. A composite name
is empty if it has zero components.
return (impl.isEmpty());
| private void | readObject(java.io.ObjectInputStream s)Overridden to avoid implementation dependency.
impl = new NameImpl(null); // null means use default syntax
int n = s.readInt(); // number of components
try {
while (--n >= 0) {
add((String)s.readObject());
}
} catch (InvalidNameException e) {
throw (new java.io.StreamCorruptedException("Invalid name"));
}
| public java.lang.Object | remove(int posn)Deletes a component from this composite name.
The component of this composite name at position 'posn' is removed,
and components at indices greater than 'posn'
are shifted down (towards index 0) by one.
return impl.remove(posn);
| public int | size()Retrieves the number of components in this composite name.
return (impl.size());
| public boolean | startsWith(javax.naming.Name n)Determines whether a composite name is a prefix of this composite name.
A composite name 'n' is a prefix if it is equal to
getPrefix(n.size())--in other words, this composite name
starts with 'n'. If 'n' is null or not a composite name, false is returned.
if (n instanceof CompositeName) {
return (impl.startsWith(n.size(), n.getAll()));
} else {
return false;
}
| public java.lang.String | toString()Generates the string representation of this composite name.
The string representation consists of enumerating in order
each component of the composite name and separating
each component by a forward slash character. Quoting and
escape characters are applied where necessary according to
the JNDI syntax, which is described in the class description.
An empty component is represented by an empty string.
The string representation thus generated can be passed to
the CompositeName constructor to create a new equivalent
composite name.
return impl.toString();
| private void | writeObject(java.io.ObjectOutputStream s)Overridden to avoid implementation dependency.
s.writeInt(size());
Enumeration comps = getAll();
while (comps.hasMoreElements()) {
s.writeObject(comps.nextElement());
}
|
|