public class ResolveResult extends java.lang.Object implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
protected javax.naming.Name |
remainingName
The remaining, unresolved part of the name.
|
protected java.lang.Object |
resolvedObj
The object, to that part of the name has been resolved.
|
| Modifier | Constructor and Description |
|---|---|
protected |
ResolveResult()
Create the unitialised instance with both parts being null.
|
|
ResolveResult(java.lang.Object resolved,
javax.naming.Name remaining)
Create the initialised instance
|
|
ResolveResult(java.lang.Object resolved,
java.lang.String remaining)
Create the initialised instance
|
| Modifier and Type | Method and Description |
|---|---|
void |
appendRemainingComponent(java.lang.String name)
Append the name to the end of the resolved name.
|
void |
appendRemainingName(javax.naming.Name name)
Append the name to the end of the resolved name.
|
javax.naming.Name |
getRemainingName()
Get the remaining unresolved part of the name
|
java.lang.Object |
getResolvedObj()
Get the object to that the name was partially resolved
|
void |
setRemainingName(javax.naming.Name name)
Set the remaining unresolved name.
|
void |
setResolvedObj(java.lang.Object obj)
Set the object to that the part of the name has been resolved.
|
protected java.lang.Object resolvedObj
protected javax.naming.Name remainingName
protected ResolveResult()
public ResolveResult(java.lang.Object resolved, java.lang.String remaining)
resolved - the object, to that the name is partially resolvedremaining - the remaining unresolved part of the name.public ResolveResult(java.lang.Object resolved, javax.naming.Name remaining)
resolved - the object, to that the name is partially resolvedremaining - the remaining unresolved part of the name.public javax.naming.Name getRemainingName()
public java.lang.Object getResolvedObj()
public void setRemainingName(javax.naming.Name name)
name - the name being set. The passed parameter is cloned, so the
caller can reuse or modify it after the method returns.public void appendRemainingName(javax.naming.Name name)
name - the name to appendpublic void appendRemainingComponent(java.lang.String name)
name - the name to appendpublic void setResolvedObj(java.lang.Object obj)
obj - the object, to that the name has been partially resolved.