From 377b2709c64b32fe93905b466482216c2cc0581c Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 19 Mar 2014 16:30:32 +0000
Subject: [PATCH] OPENDJ-1368 (CR-3232) Remove AttributeValue
---
opendj3-server-dev/src/server/org/opends/server/plugins/SambaPasswordPlugin.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/plugins/SambaPasswordPlugin.java b/opendj3-server-dev/src/server/org/opends/server/plugins/SambaPasswordPlugin.java
index b22b422..f29cde3 100644
--- a/opendj3-server-dev/src/server/org/opends/server/plugins/SambaPasswordPlugin.java
+++ b/opendj3-server-dev/src/server/org/opends/server/plugins/SambaPasswordPlugin.java
@@ -808,7 +808,7 @@
* the getNewPasswords() method. If they are encoded the method would return
* null. The list of passwords should not be modified.
*/
- final List<AttributeValue> passwords = modifyOperation.getNewPasswords();
+ final List<ByteString> passwords = modifyOperation.getNewPasswords();
/*
* If the password list is not empty, we can be sure the current operation
@@ -1039,7 +1039,7 @@
*/
private void processModification(
final PreOperationModifyOperation modifyOperation,
- final List<AttributeValue> passwords)
+ final List<ByteString> passwords)
{
// Get the last password (in case there is more then one).
final String password = passwords.get(passwords.size() - 1).toString();
--
Gitblit v1.10.0