API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.naming.spi. ResolveResult View Source
Author(s)
Rosanna Lee
Scott Seligman
Since
1.3
Version
1.10 03/12/19
Serial
Hierarchy
 Object
      ResolveResult
Implements
 Serializable
Subclasses
Description
public class ResolveResult
  This class represents the result of resolution of a name.
See also:   
Constructors
protected ResolveResult ()
Constructs an instance of ResolveResult with the resolved object and remaining name both initialized to null.
public ResolveResult (Object robj, Name rname)
  Constructs a new instance of ResolveResult consisting of the resolved Object and the remaining name.
public ResolveResult (Object robj, String rcomp)
  Constructs a new instance of ResolveResult consisting of the resolved object and the remaining unresolved component.
Methods
Hide/Show inherited methods
public void appendRemainingComponent (String name)
  Adds a single component to the end of remaining name.
public void appendRemainingName (Name name)
  Adds components to the end of remaining name.
public Name getRemainingName ()
  Retrieves the remaining unresolved portion of the name.
public Object getResolvedObj ()
  Retrieves the Object to which resolution was successful.
public void setRemainingName (Name name)
  Sets the remaining name field of this result to name.
public void setResolvedObj (Object obj)
  Sets the resolved Object field of this result to obj.
Fields
Hide/Show inherited fields
protected Name remainingName
  Field containing the remaining name yet to be resolved.
protected Object resolvedObj
  Field containing the Object that was resolved to successfully.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar