You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2007/08/19 16:24:59 UTC

svn commit: r567408 - /directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/ModifyRequest.java

Author: elecharny
Date: Sun Aug 19 07:24:58 2007
New Revision: 567408

URL: http://svn.apache.org/viewvc?view=rev&rev=567408
Log:
Using generic

Modified:
    directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/ModifyRequest.java

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/ModifyRequest.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/ModifyRequest.java?view=diff&rev=567408&r1=567407&r2=567408
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/ModifyRequest.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/message/ModifyRequest.java Sun Aug 19 07:24:58 2007
@@ -22,6 +22,8 @@
 
 import java.util.Collection;
 
+import javax.naming.directory.ModificationItem;
+
 
 import org.apache.directory.shared.ldap.name.LdapDN;
 
@@ -130,7 +132,7 @@
      * @return an immutatble Collection of ModificationItem instances.
      * @see javax.naming.directory.ModificationItem
      */
-    Collection getModificationItems();
+    Collection<ModificationItem> getModificationItems();
 
 
     /**