From 3610cc2b7bc4fa3228f18e361823035064d5aa0b Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 05 Feb 2016 08:10:31 +0000
Subject: [PATCH] Align Attribute with SDK APIs: containsAll(Collection<ByteString>) => containsAll(Collection<?>)
---
opendj-server-legacy/src/main/java/org/opends/server/api/VirtualAttributeProvider.java | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/api/VirtualAttributeProvider.java b/opendj-server-legacy/src/main/java/org/opends/server/api/VirtualAttributeProvider.java
index 2b97dd8..f247d16 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/api/VirtualAttributeProvider.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/api/VirtualAttributeProvider.java
@@ -22,7 +22,7 @@
*
*
* Copyright 2006-2009 Sun Microsystems, Inc.
- * Portions Copyright 2012-2014 ForgeRock AS
+ * Portions Copyright 2012-2016 ForgeRock AS
*/
package org.opends.server.api;
@@ -227,8 +227,7 @@
* {@code false} if it will not generate at least one of
* them.
*/
- public boolean hasAllValues(Entry entry, VirtualAttributeRule rule,
- Collection<ByteString> values)
+ public boolean hasAllValues(Entry entry, VirtualAttributeRule rule, Collection<?> values)
{
return getValues(entry, rule).containsAll(values);
}
--
Gitblit v1.10.0