|
JNDI 1.1.1 | ||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Packages that use Attributes | |
| javax.naming.directory | Extends the core javax.naming package to provide functionality for accessing directories in addition to naming services. |
| Uses of Attributes in javax.naming.directory |
| Classes in javax.naming.directory that implement Attributes | |
class |
BasicAttributes
This class provides a basic implementation of the Attributes interface. |
| Methods in javax.naming.directory that return Attributes | |
Attributes |
DirContext.getAttributes(Name name)
Retrieves all of the attributes associated with a named object. |
Attributes |
DirContext.getAttributes(java.lang.String name)
Retrieves all of the attributes associated with a string-named object. |
Attributes |
DirContext.getAttributes(Name name,
java.lang.String[] attrIds)
Retrieves selected attributes associated with a named object. |
Attributes |
DirContext.getAttributes(java.lang.String name,
java.lang.String[] attrIds)
Retrieves selected attributes associated with a string-named object. |
Attributes |
InitialDirContext.getAttributes(java.lang.String name)
Retrieves all the attributes associated with named object. |
Attributes |
InitialDirContext.getAttributes(java.lang.String name,
java.lang.String[] attrIds)
Retrieves the attributes listed in attrIds associated with named object. |
Attributes |
InitialDirContext.getAttributes(Name name)
Retrieves all the attributes associated with named object. |
Attributes |
InitialDirContext.getAttributes(Name name,
java.lang.String[] attrIds)
Retrieves the attributes listed in attrIds associated with named object. |
Attributes |
SearchResult.getAttributes()
Retrieves the attributes in this search result. |
| Methods in javax.naming.directory with parameters of type Attributes | |
void |
DirContext.modifyAttributes(Name name,
int mod_op,
Attributes attrs)
Modifies the attributes associated with a named object. |
void |
DirContext.modifyAttributes(java.lang.String name,
int mod_op,
Attributes attrs)
Modifies the attributes associated with a string-named object. |
void |
DirContext.bind(Name name,
java.lang.Object obj,
Attributes attrs)
Binds 'name' to the object 'obj' and associate the attributes 'attrs' with the named object. |
void |
DirContext.bind(java.lang.String name,
java.lang.Object obj,
Attributes attrs)
Binds 'name' to the object 'obj' and associate the attributes 'attrs' with the named object. |
void |
DirContext.rebind(Name name,
java.lang.Object obj,
Attributes attrs)
Binds 'name' to the object 'obj' and associates the attributes 'attrs' with the named object, overwriting any existing binding. |
void |
DirContext.rebind(java.lang.String name,
java.lang.Object obj,
Attributes attrs)
Binds 'name' to the object 'obj' and associates the attributes 'attrs' with the (string-) named object, overwriting any existing binding. |
DirContext |
DirContext.createSubcontext(Name name,
Attributes attrs)
Creates a new context with given attributes, and binds it in the target context. |
DirContext |
DirContext.createSubcontext(java.lang.String name,
Attributes attrs)
Creates a new context with given attributes, and binds it in the target context. |
NamingEnumeration |
DirContext.search(Name name,
Attributes matchingAttributes,
java.lang.String[] attributesToReturn)
Searches in a single context for objects that contain a specified set of attributes and retrieve their attributes. |
NamingEnumeration |
DirContext.search(java.lang.String name,
Attributes matchingAttributes,
java.lang.String[] attributesToReturn)
Searches in a single context for objects that contain a specified set of attributes and return their specified attributes. |
NamingEnumeration |
DirContext.search(Name name,
Attributes matchingAttributes)
Searches in a single context for objects that contain a specified set of attributes. |
NamingEnumeration |
DirContext.search(java.lang.String name,
Attributes matchingAttributes)
Searches in a single context for objects that contain a specified set of attributes. |
void |
InitialDirContext.modifyAttributes(java.lang.String name,
int mod_op,
Attributes attrs)
Modifies according to mod_op and attrs the attributes associated with the named object. |
void |
InitialDirContext.modifyAttributes(Name name,
int mod_op,
Attributes attrs)
Modifies according to mod_op and attrs the attributes associated with the named object. |
void |
InitialDirContext.bind(java.lang.String name,
java.lang.Object obj,
Attributes attrs)
Binds 'name' to the object 'obj' and associate the attributes 'attrs' with the named object. |
void |
InitialDirContext.bind(Name name,
java.lang.Object obj,
Attributes attrs)
Binds 'name' to the object 'obj' and associate the attributes 'attrs' with the named object. |
void |
InitialDirContext.rebind(java.lang.String name,
java.lang.Object obj,
Attributes attrs)
Binds 'name' to the object 'obj' and associates the attributes 'attrs' with the named object. |
void |
InitialDirContext.rebind(Name name,
java.lang.Object obj,
Attributes attrs)
Binds 'name' to the object 'obj' and associates the attributes 'attrs' with the named object. |
DirContext |
InitialDirContext.createSubcontext(java.lang.String name,
Attributes attrs)
Creates a new subcontext with the given name resolved relative to the initial context, and associates the attributes 'attrs' with the named object. |
DirContext |
InitialDirContext.createSubcontext(Name name,
Attributes attrs)
Creates a new subcontext with the given name resolved relative to the initial context, and associates the attributes 'attrs' with the named object. |
NamingEnumeration |
InitialDirContext.search(java.lang.String name,
Attributes matchingAttributes)
Searches for named objects that contain a set of attributes in a single context. |
NamingEnumeration |
InitialDirContext.search(Name name,
Attributes matchingAttributes)
Searches for named objects that contain a set of attributes in a single context. |
NamingEnumeration |
InitialDirContext.search(java.lang.String name,
Attributes matchingAttributes,
java.lang.String[] attributesToReturn)
Searches for named objects that contain a set of attributes in a single context. |
NamingEnumeration |
InitialDirContext.search(Name name,
Attributes matchingAttributes,
java.lang.String[] attributesToReturn)
Searches for named objects that contain a set of attributes in a single context. |
void |
SearchResult.setAttributes(Attributes attrs)
Sets the attributes of this search result to attrs. |
| Constructors in javax.naming.directory with parameters of type Attributes | |
SearchResult.SearchResult(java.lang.String name,
java.lang.Object obj,
Attributes attrs)
Constructs a search result using the result's name, its bound object, and its attributes. |
|
SearchResult.SearchResult(java.lang.String name,
java.lang.Object obj,
Attributes attrs,
boolean isRelative)
Constructs a search result using the result's name, its bound object, and its attributes, and whether the name is relative. |
|
SearchResult.SearchResult(java.lang.String name,
java.lang.String className,
java.lang.Object obj,
Attributes attrs)
Constructs a search result using the result's name, its class name, its bound object, and its attributes. |
|
SearchResult.SearchResult(java.lang.String name,
java.lang.String className,
java.lang.Object obj,
Attributes attrs,
boolean isRelative)
Constructs a search result using the result's name, its class name, its bound object, its attributes, and whether the name is relative. |
|
|
JNDI 1.1.1 | ||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||