JavaTM Platform
Standard Ed. 6

인터페이스
javax.naming.directory.Attributes 의 사용

Attributes 를 사용하고 있는 패키지
javax.naming.directory javax.naming 패키지를 확장해, 디렉토리 서비스에 액세스 하는 기능을 제공합니다.  
javax.naming.ldap LDAPv3 의 확장 조작과 컨트롤을 지원합니다.  
javax.naming.spi javax.naming 및 관련 패키지에 의해, 네이밍 서비스 및 디렉토리 서비스에의 액세스를 동적으로 플러그 인 하는 수단을 제공합니다.  
 

javax.naming.directory 에서의 Attributes 의 사용
 

Attributes 를 구현하고 있는 javax.naming.directory 의 클래스
 class BasicAttributes
          이 클래스는, Attributes 인터페이스의 기본적인 구현을 제공합니다.
 

Attributes 를 돌려주는 javax.naming.directory 의 메소드
 Attributes SearchResult. getAttributes ()
          이 검색 결과의 속성을 가져옵니다.
 Attributes InitialDirContext. getAttributes (Name  name)
           
 Attributes DirContext. getAttributes (Name  name)
          이름 첨부 객체에 관련지을 수 있었던 속성을 모두 가져옵니다.
 Attributes InitialDirContext. getAttributes (Name  name, String [] attrIds)
           
 Attributes DirContext. getAttributes (Name  name, String [] attrIds)
          이름 첨부 객체에 관련지을 수 있었던 속성으로 선택된 것을 가져옵니다.
 Attributes InitialDirContext. getAttributes (String  name)
           
 Attributes DirContext. getAttributes (String  name)
          이름 첨부 객체에 관련지을 수 있었던 속성을 모두 가져옵니다.
 Attributes InitialDirContext. getAttributes (String  name, String [] attrIds)
           
 Attributes DirContext. getAttributes (String  name, String [] attrIds)
          이름 첨부 객체에 관련지을 수 있었던 속성으로 선택된 것을 가져옵니다.
 

Attributes 형의 파라미터를 가지는 javax.naming.directory 의 메소드
 void InitialDirContext. bind (Name  name, Object  obj, Attributes  attrs)
           
 void DirContext. bind (Name  name, Object  obj, Attributes  attrs)
          관련지을 수 있었던 속성과 함께, 이름을 객체에 바인드 합니다.
 void InitialDirContext. bind (String  name, Object  obj, Attributes  attrs)
           
 void DirContext. bind (String  name, Object  obj, Attributes  attrs)
          관련지을 수 있었던 속성과 함께, 이름을 객체에 바인드 합니다.
 DirContext InitialDirContext. createSubcontext (Name  name, Attributes  attrs)
           
 DirContext DirContext. createSubcontext (Name  name, Attributes  attrs)
          관련지을 수 있었던 속성과 함께, 이름을 객체에 바인드 합니다.
 DirContext InitialDirContext. createSubcontext (String  name, Attributes  attrs)
           
 DirContext DirContext. createSubcontext (String  name, Attributes  attrs)
          관련지을 수 있었던 속성과 함께, 이름을 객체에 바인드 합니다.
 void InitialDirContext. modifyAttributes (Name  name, int mod_op, Attributes  attrs)
           
 void DirContext. modifyAttributes (Name  name, int mod_op, Attributes  attrs)
          이름 첨부 객체에 관련지을 수 있었던 속성을 변경합니다.
 void InitialDirContext. modifyAttributes (String  name, int mod_op, Attributes  attrs)
           
 void DirContext. modifyAttributes (String  name, int mod_op, Attributes  attrs)
          이름 첨부 객체에 관련지을 수 있었던 속성을 변경합니다.
 void InitialDirContext. rebind (Name  name, Object  obj, Attributes  attrs)
           
 void DirContext. rebind (Name  name, Object  obj, Attributes  attrs)
          관련지을 수 있었던 속성과 함께 이름을 객체에 바인드 해, 기존의 바인딩을 오버라이드(override) 합니다.
 void InitialDirContext. rebind (String  name, Object  obj, Attributes  attrs)
           
 void DirContext. rebind (String  name, Object  obj, Attributes  attrs)
          관련지을 수 있었던 속성과 함께 이름을 객체에 바인드 해, 기존의 바인딩을 오버라이드(override) 합니다.
 NamingEnumeration <SearchResult > InitialDirContext. search (Name  name, Attributes  matchingAttributes)
           
 NamingEnumeration <SearchResult > DirContext. search (Name  name, Attributes  matchingAttributes)
          지정된 속성세트를 포함한 객체를 단일 문맥으로 검색합니다.
 NamingEnumeration <SearchResult > InitialDirContext. search (Name  name, Attributes  matchingAttributes, String [] attributesToReturn)
           
 NamingEnumeration <SearchResult > DirContext. search (Name  name, Attributes  matchingAttributes, String [] attributesToReturn)
          지정된 속성세트를 포함한 객체를 단일 문맥으로 검색해, 선택한 속성을 가져옵니다.
 NamingEnumeration <SearchResult > InitialDirContext. search (String  name, Attributes  matchingAttributes)
           
 NamingEnumeration <SearchResult > DirContext. search (String  name, Attributes  matchingAttributes)
          지정된 속성세트를 포함한 객체를 단일 문맥으로 검색합니다.
 NamingEnumeration <SearchResult > InitialDirContext. search (String  name, Attributes  matchingAttributes, String [] attributesToReturn)
           
 NamingEnumeration <SearchResult > DirContext. search (String  name, Attributes  matchingAttributes, String [] attributesToReturn)
          지정된 속성세트를 포함한 객체를 단일 문맥으로 검색해, 선택한 속성을 가져옵니다.
 void SearchResult. setAttributes (Attributes  attrs)
          이 검색 결과의 속성을 attrs 로 설정합니다.
 

Attributes 형의 파라미터를 가지는 javax.naming.directory 의 생성자
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)
          결과의 이름, 결과의 클래스명, 결과가 바인드 되는 객체, 결과의 속성을 사용해, 이름이 상대적인가 어떤가를 판단해, 검색 결과를 구축합니다.
 

javax.naming.ldap 에서의 Attributes 의 사용
 

Attributes 를 돌려주는 javax.naming.ldap 의 메소드
 Attributes Rdn. toAttributes ()
          이 Rdn 에 포함되는 형/치의 매핑 Attributes 뷰를 가져옵니다.
 

Attributes 형의 파라미터를 가지는 javax.naming.ldap 의 생성자
Rdn (Attributes  attrSet)
          지정의 속성 세트로부터 Rdn 를 작성합니다.
 

javax.naming.spi 에서의 Attributes 의 사용
 

Attributes 를 돌려주는 javax.naming.spi 의 메소드
 Attributes DirStateFactory.Result. getAttributes ()
          바인드 대상의 속성을 가져옵니다.
 

Attributes 형의 파라미터를 가지는 javax.naming.spi 의 메소드
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)
          변환 대상의 객체 및 속성을, 바인딩 하기 위해서 객체 상태를 가져옵니다.
 

Attributes 형의 파라미터를 가지는 javax.naming.spi 의 생성자
DirStateFactory.Result (Object  obj, Attributes  outAttrs)
          결과의 인스턴스를 구축합니다.
 


JavaTM Platform
Standard Ed. 6

버그의 보고와 기능의 요청
한층 더 자세한 API 레퍼런스 및 개발자 문서에 대해서는,Java SE 개발자용 문서를 참조해 주세요. 개발자전용의 상세한 해설, 개념의 개요, 용어의 정의, 버그의 회피책, 및 코드 실례가 포함되어 있습니다.

Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms . Documentation Redistribution Policy 도 참조해 주세요.