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/UnbindRequestImpl.java | 19 ++++++++++++++++++-
1 files changed, 18 insertions(+), 1 deletions(-)
diff --git a/sdk/src/org/opends/sdk/requests/UnbindRequestImpl.java b/sdk/src/org/opends/sdk/requests/UnbindRequestImpl.java
index 87c8eef..3c91a43 100644
--- a/sdk/src/org/opends/sdk/requests/UnbindRequestImpl.java
+++ b/sdk/src/org/opends/sdk/requests/UnbindRequestImpl.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Copyright 2009 Sun Microsystems, Inc.
+ * Copyright 2010 Sun Microsystems, Inc.
*/
package org.opends.sdk.requests;
@@ -47,6 +47,23 @@
/**
+ * Creates a new unbind request that is an exact copy of the provided
+ * request.
+ *
+ * @param unbindRequest
+ * The unbind request to be copied.
+ * @throws NullPointerException
+ * If {@code unbindRequest} was {@code null} .
+ */
+ UnbindRequestImpl(final UnbindRequest unbindRequest)
+ throws NullPointerException
+ {
+ super(unbindRequest);
+ }
+
+
+
+ /**
* {@inheritDoc}
*/
@Override
--
Gitblit v1.10.0