From 1734229125e7bad5f85dfe11d076eeda206236a9 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Mon, 18 Oct 2010 19:41:47 +0000
Subject: [PATCH] Update from OpenDS sdk by Bo Li: Added unmodifiable and copyOf request factories. Added authrate performance utility.

---
 sdk/src/org/opends/sdk/requests/ExternalSASLBindRequest.java |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/sdk/src/org/opends/sdk/requests/ExternalSASLBindRequest.java b/sdk/src/org/opends/sdk/requests/ExternalSASLBindRequest.java
index 436d38c..ab1a2bc 100644
--- a/sdk/src/org/opends/sdk/requests/ExternalSASLBindRequest.java
+++ b/sdk/src/org/opends/sdk/requests/ExternalSASLBindRequest.java
@@ -150,11 +150,14 @@
    *          The desired authorization ID of the user, which may be {@code
    *          null}.
    * @return This bind request.
+   * @throws UnsupportedOperationException
+   *           If this external SASL request does not permit the authorization
+   *           ID to be set.
    * @throws LocalizedIllegalArgumentException
    *           If {@code authorizationID} was non-empty and did not contain a
    *           valid authorization ID type.
    */
   ExternalSASLBindRequest setAuthorizationID(String authorizationID)
-      throws LocalizedIllegalArgumentException;
+      throws UnsupportedOperationException, LocalizedIllegalArgumentException;
 
 }

--
Gitblit v1.10.0