Uses of Interface
javax.naming.directory.Attributes
-
Packages that use Attributes 软件包 描述 javax.naming.directory 扩展javax.naming
程序包以提供访问目录服务的功能。javax.naming.ldap 提供对LDAPv3扩展操作和控件的支持。javax.naming.spi 提供通过javax.naming
及相关软件包动态插入支持访问命名和目录服务的javax.naming
。 -
-
Uses of Attributes in javax.naming.directory
Classes in javax.naming.directory that implement Attributes 变量和类型 类 描述 class
BasicAttributes
此类提供Attributes接口的基本实现。Methods in javax.naming.directory that return Attributes 变量和类型 方法 描述 Attributes
DirContext. getAttributes(String name)
检索与命名对象关联的所有属性。Attributes
DirContext. getAttributes(String name, String[] attrIds)
检索与命名对象关联的选定属性。Attributes
DirContext. getAttributes(Name name)
检索与命名对象关联的所有属性。Attributes
DirContext. getAttributes(Name name, String[] attrIds)
检索与命名对象关联的选定属性。Attributes
SearchResult. getAttributes()
检索此搜索结果中的属性。Methods in javax.naming.directory with parameters of type Attributes 变量和类型 方法 描述 void
DirContext. bind(String name, Object obj, Attributes attrs)
将名称绑定到对象以及关联的属性。void
DirContext. bind(Name name, Object obj, Attributes attrs)
将名称绑定到对象以及关联的属性。DirContext
DirContext. createSubcontext(String name, Attributes attrs)
创建并绑定新上下文以及相关属性。DirContext
DirContext. createSubcontext(Name name, Attributes attrs)
创建并绑定新上下文以及相关属性。void
DirContext. modifyAttributes(String name, int mod_op, Attributes attrs)
修改与命名对象关联的属性。void
DirContext. modifyAttributes(Name name, int mod_op, Attributes attrs)
修改与命名对象关联的属性。void
DirContext. rebind(String name, Object obj, Attributes attrs)
将名称绑定到对象以及相关属性,覆盖任何现有绑定。void
DirContext. rebind(Name name, Object obj, Attributes attrs)
将名称绑定到对象以及相关属性,覆盖任何现有绑定。NamingEnumeration<SearchResult>
DirContext. search(String name, Attributes matchingAttributes)
在单个上下文中搜索包含指定属性集的对象。NamingEnumeration<SearchResult>
DirContext. search(String name, Attributes matchingAttributes, String[] attributesToReturn)
在单个上下文中搜索包含指定属性集的对象,并检索所选属性。NamingEnumeration<SearchResult>
DirContext. search(Name name, Attributes matchingAttributes)
在单个上下文中搜索包含指定属性集的对象。NamingEnumeration<SearchResult>
DirContext. search(Name name, Attributes matchingAttributes, String[] attributesToReturn)
在单个上下文中搜索包含指定属性集的对象,并检索所选属性。void
SearchResult. setAttributes(Attributes attrs)
将此搜索结果的属性设置为attrs
。Constructors in javax.naming.directory with parameters of type Attributes 构造器 描述 SearchResult(String name, Object obj, Attributes attrs)
使用结果的名称,绑定对象及其属性构造搜索结果。SearchResult(String name, Object obj, Attributes attrs, boolean isRelative)
使用结果的名称,绑定对象及其属性以及名称是否相对来构造搜索结果。SearchResult(String name, String className, Object obj, Attributes attrs)
使用结果的名称,类名,绑定对象及其属性构造搜索结果。SearchResult(String name, String className, Object obj, Attributes attrs, boolean isRelative)
使用结果的名称,类名,绑定对象,其属性以及名称是否相对来构造搜索结果。 -
Uses of Attributes in javax.naming.ldap
Methods in javax.naming.ldap that return Attributes 变量和类型 方法 描述 Attributes
Rdn. toAttributes()
检索此Rdn中包含的类型/值映射的Attributes
视图。Constructors in javax.naming.ldap with parameters of type Attributes 构造器 描述 Rdn(Attributes attrSet)
根据给定的属性集构造Rdn。 -
Uses of Attributes in javax.naming.spi
Methods in javax.naming.spi that return Attributes 变量和类型 方法 描述 Attributes
DirStateFactory.Result. getAttributes()
检索要绑定的属性。Methods in javax.naming.spi with parameters of type Attributes 变量和类型 方法 描述 static Object
DirectoryManager. getObjectInstance(Object refInfo, Name name, Context nameCtx, Hashtable<?,?> environment, Attributes attrs)
为指定的对象,属性和环境创建对象的实例。Object
DirObjectFactory. getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable<?,?> environment, Attributes attrs)
使用位置或引用信息以及指定的属性创建对象。static DirStateFactory.Result
DirectoryManager. getStateToBind(Object obj, Name name, Context nameCtx, Hashtable<?,?> environment, Attributes attrs)
在给定原始对象及其属性时,检索用于绑定的对象的状态。DirStateFactory.Result
DirStateFactory. getStateToBind(Object obj, Name name, Context nameCtx, Hashtable<?,?> environment, Attributes inAttrs)
在给定要转换的对象和属性的情况下,检索要绑定的对象的状态。Constructors in javax.naming.spi with parameters of type Attributes 构造器 描述 Result(Object obj, Attributes outAttrs)
构造Result的实例。
-