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/GSSAPISASLBindRequest.java | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/sdk/src/org/opends/sdk/requests/GSSAPISASLBindRequest.java b/sdk/src/org/opends/sdk/requests/GSSAPISASLBindRequest.java
index 814efae..cac8583 100644
--- a/sdk/src/org/opends/sdk/requests/GSSAPISASLBindRequest.java
+++ b/sdk/src/org/opends/sdk/requests/GSSAPISASLBindRequest.java
@@ -506,8 +506,12 @@
* @param subject
* The Kerberos subject of the user to be authenticated.
* @return This bind request.
+ * @throws UnsupportedOperationException
+ * If this bind request does not permit the Kerberos subject to be
+ * set.
* @throws NullPointerException
* If {@code subject} was {@code null}.
*/
- GSSAPISASLBindRequest setSubject(Subject subject) throws NullPointerException;
+ GSSAPISASLBindRequest setSubject(Subject subject)
+ throws UnsupportedOperationException, NullPointerException;
}
--
Gitblit v1.10.0