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.io.IOException;
0N/Aimport javax.naming.*;
0N/Aimport javax.naming.directory.*;
0N/Aimport javax.naming.ldap.*;
0N/A
0N/A/**
0N/A * This class represents a factory for creating LDAPv3 response controls.
0N/A * The following response controls are supported:
0N/A * <ul>
0N/A * <li>
0N/A * Paged results, as defined in
0N/A * <a href="http://www.ietf.org/rfc/rfc2696.txt">RFC 2696</a>.
0N/A * <li>
0N/A * Server-side sorting, as defined in
0N/A * <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>.
0N/A * <li>
0N/A * Entry change response control, as defined in
0N/A * <a href="http://www.ietf.org/internet-drafts/draft-ietf-ldapext-psearch-02.txt">draft-ietf-ldapext-psearch-02.txt</a>.
0N/A * </ul>
0N/A *
0N/A * @see javax.naming.ldap.SortResponseControl
0N/A * @see javax.naming.ldap.PagedResultsResponseControl
0N/A * @see PersistentSearchControl
0N/A * @see EntryChangeResponseControl
0N/A * @author Vincent Ryan
0N/A */
0N/Apublic class DefaultResponseControlFactory extends ControlFactory {
0N/A
0N/A /**
0N/A * Constructs a new instance of the response control factory.
0N/A */
0N/A public DefaultResponseControlFactory() {
0N/A }
0N/A
0N/A /**
0N/A * Creates an instance of a response control class from a more
0N/A * generic control class (BasicControl).
0N/A *
0N/A * @param ctl A non-null control.
0N/A * @return The LDAP control created or null if it cannot be created.
0N/A * Null indicates that another factory should be attempted.
0N/A * @exception NamingException if this control factory encountered an
0N/A * error condition while attempting to create the LDAP control,
0N/A * and no other control factories are to be tried.
0N/A */
0N/A public Control getControlInstance(Control ctl)
0N/A throws NamingException {
0N/A
0N/A String id = ctl.getID();
0N/A//System.out.println(id);
0N/A
0N/A try {
0N/A if (id.equals(SortResponseControl.OID)) {
0N/A return new SortResponseControl(id, ctl.isCritical(),
0N/A ctl.getEncodedValue());
0N/A
0N/A } else if (id.equals(PagedResultsResponseControl.OID)) {
0N/A return new PagedResultsResponseControl(id, ctl.isCritical(),
0N/A ctl.getEncodedValue());
0N/A
0N/A } else if (id.equals(EntryChangeResponseControl.OID)) {
0N/A return new EntryChangeResponseControl(id, ctl.isCritical(),
0N/A ctl.getEncodedValue());
0N/A
0N/A }
0N/A } catch (IOException e) {
0N/A NamingException ne = new NamingException();
0N/A ne.setRootCause(e);
0N/A throw ne;
0N/A }
0N/A return null;
0N/A }
0N/A}