0N/A/*
2362N/A * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage com.sun.jndi.ldap;
0N/A
0N/Aimport java.util.Vector;
0N/Aimport javax.naming.*;
0N/Aimport javax.naming.directory.*;
0N/Aimport javax.naming.spi.*;
0N/A
0N/Aimport com.sun.jndi.toolkit.ctx.Continuation;
0N/A
0N/Afinal class LdapBindingEnumeration extends LdapNamingEnumeration {
0N/A
0N/A LdapBindingEnumeration(LdapCtx homeCtx, LdapResult answer, Name remain,
0N/A Continuation cont) throws NamingException
0N/A {
0N/A super(homeCtx, answer, remain, cont);
0N/A }
0N/A
0N/A protected NameClassPair
0N/A createItem(String dn, Attributes attrs, Vector respCtls)
0N/A throws NamingException {
0N/A
0N/A Object obj = null;
0N/A String atom = getAtom(dn);
0N/A
0N/A if (attrs.get(Obj.JAVA_ATTRIBUTES[Obj.CLASSNAME]) != null) {
0N/A // serialized object or object reference
0N/A obj = Obj.decodeObject(attrs);
0N/A }
0N/A if (obj == null) {
0N/A // DirContext object
0N/A obj = new LdapCtx(homeCtx, dn);
0N/A }
0N/A
0N/A CompositeName cn = new CompositeName();
0N/A cn.add(atom);
0N/A
0N/A try {
0N/A obj = DirectoryManager.getObjectInstance(obj, cn, homeCtx,
0N/A homeCtx.envprops, attrs);
0N/A
0N/A } catch (NamingException e) {
0N/A throw e;
0N/A
0N/A } catch (Exception e) {
0N/A NamingException ne =
0N/A new NamingException(
0N/A "problem generating object using object factory");
0N/A ne.setRootCause(e);
0N/A throw ne;
0N/A }
0N/A
0N/A Binding binding;
0N/A if (respCtls != null) {
0N/A binding = new BindingWithControls(cn.toString(), obj,
0N/A homeCtx.convertControls(respCtls));
0N/A } else {
0N/A binding = new Binding(cn.toString(), obj);
0N/A }
0N/A binding.setNameInNamespace(dn);
0N/A return binding;
0N/A }
0N/A
0N/A protected LdapNamingEnumeration
0N/A getReferredResults(LdapReferralContext refCtx) throws NamingException{
0N/A // repeat the original operation at the new context
0N/A return (LdapNamingEnumeration) refCtx.listBindings(listArg);
0N/A }
0N/A}