| javax.naming.Binding com.flexive.war.webdav.DirBinding
DirBinding | public class DirBinding extends Binding (Code) | | A subclass of Binding that adds support for Attributes. This class is used
to pass a contexts raw bindings to NameBindingIterator.
author: Scott_Stark@displayscape.com version: $Rev: 1 $ |
Constructor Summary | |
public | DirBinding(String name, Object obj, Attributes attributes) Constructs an instance of a Binding given its relative name, object,
attributes and whether the name is relative. | public | DirBinding(String name, String className, Object obj, Attributes attributes) Constructs an instance of a Binding given its relative name, class name,
object, attributes and whether the name is relative.
Parameters: name - - The non-null string name of the object. Parameters: className - - The possibly null class name of the object bound to name.If null, the class name of obj is returned by getClassName(). | public | DirBinding(String name, String className, Object obj, boolean isRelative, Attributes attributes) Constructs an instance of a Binding given its name, object, attributes
and whether the name is relative. |
DirBinding | public DirBinding(String name, Object obj, Attributes attributes)(Code) | | Constructs an instance of a Binding given its relative name, object,
attributes and whether the name is relative.
Parameters: obj - - The possibly null object bound to name. Parameters: attributes - - the attributes associated with obj |
DirBinding | public DirBinding(String name, String className, Object obj, Attributes attributes)(Code) | | Constructs an instance of a Binding given its relative name, class name,
object, attributes and whether the name is relative.
Parameters: name - - The non-null string name of the object. Parameters: className - - The possibly null class name of the object bound to name.If null, the class name of obj is returned by getClassName(). If obj isalso null, getClassName() will return null. Parameters: obj - - The possibly null object bound to name. Parameters: attributes - - the attributes associated with obj |
DirBinding | public DirBinding(String name, String className, Object obj, boolean isRelative, Attributes attributes)(Code) | | Constructs an instance of a Binding given its name, object, attributes
and whether the name is relative.
Parameters: name - - The non-null string name of the object. Parameters: obj - - The possibly null object bound to name. Parameters: isRelative - - true if name is a name relative to the target context(which is named by the first parameter of the listBindings() method);false if name is a URL string. Parameters: attributes - - the attributes associated with obj |
|
|