gecko-dev/directory/java-sdk/ldapsp/com/netscape/jndi/ldap/SearchResultEnum.java

76 строки
2.8 KiB
Java
Исходник Обычный вид История

1999-06-05 05:05:59 +04:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
1999-11-02 04:46:24 +03:00
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
1999-06-05 05:05:59 +04:00
*
1999-11-02 04:46:24 +03:00
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
1999-06-05 05:05:59 +04:00
*
1999-11-02 04:46:24 +03:00
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-06-05 05:05:59 +04:00
* Communications Corporation. Portions created by Netscape are
1999-11-02 04:46:24 +03:00
* Copyright (C) 1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-06-05 05:05:59 +04:00
*/
package com.netscape.jndi.ldap;
import javax.naming.*;
import javax.naming.directory.*;
import javax.naming.ldap.*;
import com.netscape.jndi.ldap.controls.NetscapeControlFactory;
import com.netscape.jndi.ldap.common.ExceptionMapper;
import netscape.ldap.*;
import java.util.*;
/**
* A wrapper for the LDAPSeatchResults. Convert a LDAPSearchResults enumeration
* of LDAPEntries into a JNDI NamingEnumeration of JNDI SearchResults.
*/
1999-09-15 21:03:19 +04:00
class SearchResultEnum extends BaseSearchEnum {
1999-06-05 05:05:59 +04:00
1999-08-27 20:09:54 +04:00
boolean m_returnObjs; // ReturningObjFlag in SearchControls
String[] m_userBinaryAttrs;
public SearchResultEnum(LDAPSearchResults res, boolean returnObjs, LdapContextImpl ctx) throws NamingException{
1999-09-15 21:03:19 +04:00
super(res, ctx);
1999-08-27 20:09:54 +04:00
m_returnObjs = returnObjs;
1999-09-15 21:03:19 +04:00
m_userBinaryAttrs = ctx.m_ctxEnv.getUserDefBinaryAttrs();
1999-08-27 20:09:54 +04:00
}
1999-06-05 05:05:59 +04:00
1999-08-27 20:09:54 +04:00
public Object next() throws NamingException{
1999-09-15 21:03:19 +04:00
LDAPEntry entry = nextLDAPEntry();
String name = LdapNameParser.getRelativeName(m_ctxName, entry.getDN());
Object obj = (m_returnObjs) ? ObjectMapper.entryToObject(entry, m_ctx) : null;
Attributes attrs = new AttributesImpl(entry.getAttributeSet(), m_userBinaryAttrs);
1999-08-27 20:09:54 +04:00
1999-09-15 21:03:19 +04:00
// check for response controls
LDAPControl[] ldapCtls = m_res.getResponseControls();
if (ldapCtls != null) {
// Parse raw controls
Control[] ctls = new Control[ldapCtls.length];
for (int i=0; i < ldapCtls.length; i++) {
ctls[i] = NetscapeControlFactory.getControlInstance(ldapCtls[i]);
if (ctls[i] == null) {
throw new NamingException("Unsupported control " + ldapCtls[i].getID());
1999-06-05 05:05:59 +04:00
}
1999-08-27 20:09:54 +04:00
}
1999-06-05 05:05:59 +04:00
1999-09-15 21:03:19 +04:00
SearchResultWithControls searchRes =
new SearchResultWithControls(name, obj, attrs);
searchRes.setControls(ctls);
1999-06-05 05:05:59 +04:00
1999-09-15 21:03:19 +04:00
return searchRes;
1999-08-27 20:09:54 +04:00
}
1999-09-15 21:03:19 +04:00
else { // no controls
return new SearchResult(name, obj, attrs);
}
1999-08-27 20:09:54 +04:00
}
1999-06-05 05:05:59 +04:00
}