jdk/src/share/classes/com/sun/jndi/ldap/UnsolicitedResponseImpl.java
changeset 2 90ce3da70b43
child 5506 202f599c92aa
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/jdk/src/share/classes/com/sun/jndi/ldap/UnsolicitedResponseImpl.java	Sat Dec 01 00:00:00 2007 +0000
@@ -0,0 +1,114 @@
+/*
+ * Copyright 1999-2002 Sun Microsystems, Inc.  All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Sun designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Sun in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+package com.sun.jndi.ldap;
+
+import javax.naming.ldap.UnsolicitedNotification;
+import javax.naming.NamingException;
+import javax.naming.ldap.Control;
+import java.util.Vector;
+
+/**
+ * A concrete implementation of an UnsolicitedNotification.
+ * @author Rosanna Lee
+ */
+final class UnsolicitedResponseImpl implements UnsolicitedNotification {
+    private String oid;
+    private String[] referrals;
+    private byte[] extensionValue;
+    private NamingException exception;
+    private Control[] controls;
+
+    UnsolicitedResponseImpl(String oid, byte[] berVal, Vector ref,
+        int status, String msg, String matchedDN, Control[] controls) {
+        this.oid = oid;
+        this.extensionValue = berVal;
+
+        if (ref != null && ref.size() > 0) {
+            int len = ref.size();
+            referrals = new String[len];
+            for (int i = 0; i < len; i++) {
+                referrals[i] = (String)ref.elementAt(i);
+            }
+        }
+        exception = LdapCtx.mapErrorCode(status, msg);
+        // matchedDN ignored for now; could be used to set resolvedName
+        // exception.setResolvedName(new CompositeName().add(matchedDN));
+
+        this.controls = controls;
+    }
+
+    /**
+      * Retrieves the object identifier of the response.
+      *
+      * @return A possibly null object identifier string representing the LDAP
+      *         <tt>ExtendedResponse.responseName</tt> component.
+      */
+    public String getID() {
+        return oid;
+    }
+
+    /**
+      * Retrieves the ASN.1 BER encoded value of the LDAP extended operation
+      * response. Null is returned if the value is absent from the response
+      * sent by the LDAP server.
+      * The result is the raw BER bytes including the tag and length of
+      * the response value. It does not include the response OID.
+      *
+      * @return A possibly null byte array representing the ASN.1 BER encoded
+      *         contents of the LDAP <tt>ExtendedResponse.response</tt>
+      *         component.
+      */
+    public byte[] getEncodedValue() {
+        return extensionValue;
+    }
+
+    /**
+     * Retrieves the referral(s) sent by the server.
+     *
+     * @return A possibly null array of referrals, each of which is represented
+     * by a URL string. If null, no referral was sent by the server.
+     */
+    public String[] getReferrals() {
+        return referrals;
+    }
+
+    /**
+     * Retrieves the exception as constructed using information
+     * sent by the server.
+     * @return A possibly null exception as constructed using information
+     * sent by the server. If null, a "success" status was indicated by
+     * the server.
+     */
+    public NamingException getException() {
+        return exception;
+    }
+
+    public Control[] getControls() throws NamingException {
+        return controls;
+    }
+
+    private static final long serialVersionUID = 5913778898401784775L;
+}