OSDN Git Service

2004-10-21 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Oct 2004 20:50:13 +0000 (20:50 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Oct 2004 20:50:13 +0000 (20:50 +0000)
* javax/naming/directory/BasicAttribute.java,
javax/naming/directory/BasicAttributes.java,
javax/naming/directory/InitialDirContext.java,
javax/naming/event/NamingEvent.java,
javax/naming/ldap/ControlFactory.java,
javax/naming/ldap/ExtendedRequest.java,
javax/naming/ldap/InitialLdapContext.java,
javax/naming/ldap/LdapReferralException.java,
javax/naming/spi/DirObjectFactory.java,
javax/naming/spi/DirStateFactory.java,
javax/naming/spi/DirectoryManager.java,
javax/naming/spi/InitialContextFactory.java,
javax/naming/spi/InitialContextFactoryBuilder.java,
javax/naming/spi/NamingManager.java,
javax/naming/spi/ObjectFactory.java,
javax/naming/spi/ObjectFactoryBuilder.java,
javax/naming/spi/StateFactory.java:
Import cleanup.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89399 138bc75d-0d04-0410-961f-82ee72b054a4

18 files changed:
libjava/ChangeLog
libjava/javax/naming/directory/BasicAttribute.java
libjava/javax/naming/directory/BasicAttributes.java
libjava/javax/naming/directory/InitialDirContext.java
libjava/javax/naming/event/NamingEvent.java
libjava/javax/naming/ldap/ControlFactory.java
libjava/javax/naming/ldap/ExtendedRequest.java
libjava/javax/naming/ldap/InitialLdapContext.java
libjava/javax/naming/ldap/LdapReferralException.java
libjava/javax/naming/spi/DirObjectFactory.java
libjava/javax/naming/spi/DirStateFactory.java
libjava/javax/naming/spi/DirectoryManager.java
libjava/javax/naming/spi/InitialContextFactory.java
libjava/javax/naming/spi/InitialContextFactoryBuilder.java
libjava/javax/naming/spi/NamingManager.java
libjava/javax/naming/spi/ObjectFactory.java
libjava/javax/naming/spi/ObjectFactoryBuilder.java
libjava/javax/naming/spi/StateFactory.java

index 86dfe20..b0facb7 100644 (file)
@@ -1,5 +1,26 @@
 2004-10-21  Michael Koch  <konqueror@gmx.de>
 
+       * javax/naming/directory/BasicAttribute.java,
+       javax/naming/directory/BasicAttributes.java,
+       javax/naming/directory/InitialDirContext.java,
+       javax/naming/event/NamingEvent.java,
+       javax/naming/ldap/ControlFactory.java,
+       javax/naming/ldap/ExtendedRequest.java,
+       javax/naming/ldap/InitialLdapContext.java,
+       javax/naming/ldap/LdapReferralException.java,
+       javax/naming/spi/DirObjectFactory.java,
+       javax/naming/spi/DirStateFactory.java,
+       javax/naming/spi/DirectoryManager.java,
+       javax/naming/spi/InitialContextFactory.java,
+       javax/naming/spi/InitialContextFactoryBuilder.java,
+       javax/naming/spi/NamingManager.java,
+       javax/naming/spi/ObjectFactory.java,
+       javax/naming/spi/ObjectFactoryBuilder.java,
+       javax/naming/spi/StateFactory.java:
+       Import cleanup.
+
+2004-10-21  Michael Koch  <konqueror@gmx.de>
+
        * javax/crypto/Cipher.java,
        javax/crypto/EncryptedPrivateKeyInfo.java,
        javax/crypto/ExemptionMechanism.java,
index 8065ae9..24c21e6 100644 (file)
@@ -1,5 +1,5 @@
 /* BasicAttribute.java --
-   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -40,12 +40,13 @@ package javax.naming.directory;
 
 import java.util.NoSuchElementException;
 import java.util.Vector;
+
 import javax.naming.NamingEnumeration;
 import javax.naming.NamingException;
 import javax.naming.OperationNotSupportedException;
 
 /**
- * @author Tom Tromey <tromey@redhat.com>
+ * @author Tom Tromey (tromey@redhat.com)
  * @date June 20, 2001
  */
 public class BasicAttribute implements Attribute
index e9b4d07..eec1c88 100644 (file)
@@ -1,5 +1,5 @@
 /* BasicAttributes.java --
-   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -40,11 +40,12 @@ package javax.naming.directory;
 
 import java.util.NoSuchElementException;
 import java.util.Vector;
+
 import javax.naming.NamingEnumeration;
 import javax.naming.NamingException;
 
 /**
- * @author Tom Tromey <tromey@redhat.com>
+ * @author Tom Tromey (tromey@redhat.com)
  * @date June 22, 2001
  */
 public class BasicAttributes implements Attributes
index a0a598b..7d02b79 100644 (file)
@@ -1,5 +1,5 @@
 /* InitialDirContext.java --
-   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,6 +39,7 @@ exception statement from your version. */
 package javax.naming.directory;
 
 import java.util.Hashtable;
+
 import javax.naming.Context;
 import javax.naming.InitialContext;
 import javax.naming.Name;
@@ -48,7 +49,7 @@ import javax.naming.NoInitialContextException;
 import javax.naming.NotContextException;
 
 /**
- * @author Tom Tromey <tromey@redhat.com>
+ * @author Tom Tromey (tromey@redhat.com)
  * @date June 25, 2001
  */
 public class InitialDirContext extends InitialContext implements DirContext
index d517188..6ac9762 100644 (file)
@@ -1,5 +1,5 @@
 /* NamingEvent.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,13 +39,13 @@ exception statement from your version. */
 package javax.naming.event;
 
 import java.util.EventObject;
+
 import javax.naming.Binding;
  
 /**
- * @author Warren Levy <warrenl@redhat.com>
+ * @author Warren Levy (warrenl@redhat.com)
  * @date June 5, 2001
  */
-
 public class NamingEvent extends EventObject
 {
   public static final int OBJECT_ADDED = 0;
index d62a310..3acf1c7 100644 (file)
@@ -1,5 +1,5 @@
 /* ControlFactory.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -40,11 +40,12 @@ package javax.naming.ldap;
 
 import java.util.Hashtable;
 import java.util.StringTokenizer;
+
 import javax.naming.Context;
 import javax.naming.NamingException;
 
 /**
- * @author Tom Tromey <tromey@redhat.com>
+ * @author Tom Tromey (tromey@redhat.com)
  * @date June 22, 2001
  */
 public abstract class ControlFactory
index 2f53268..35f4c5e 100644 (file)
@@ -1,5 +1,5 @@
 /* ExtendedRequest.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,13 +39,13 @@ exception statement from your version. */
 package javax.naming.ldap;
 
 import java.io.Serializable;
+
 import javax.naming.NamingException;
  
 /**
- * @author Warren Levy <warrenl@redhat.com>
+ * @author Warren Levy (warrenl@redhat.com)
  * @date June 1, 2001
  */
-
 public interface ExtendedRequest extends Serializable
 {
   String getID();
index b56ee3a..abba7a5 100644 (file)
@@ -1,5 +1,5 @@
 /* InitialLdapContext.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,6 +39,7 @@ exception statement from your version. */
 package javax.naming.ldap;
 
 import java.util.Hashtable;
+
 import javax.naming.Context;
 import javax.naming.NamingException;
 import javax.naming.NoInitialContextException;
@@ -46,7 +47,7 @@ import javax.naming.NotContextException;
 import javax.naming.directory.InitialDirContext;
 
 /**
- * @author Tom Tromey <tromey@redhat.com>
+ * @author Tom Tromey (tromey@redhat.com)
  * @date June 21, 2001
  */
 public class InitialLdapContext
index 2127321..fa40632 100644 (file)
@@ -1,5 +1,5 @@
 /* LdapReferralException.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,15 +39,15 @@ exception statement from your version. */
 package javax.naming.ldap;
 
 import java.util.Hashtable;
+
 import javax.naming.Context;
 import javax.naming.NamingException;
 import javax.naming.ReferralException;
  
 /**
- * @author Warren Levy <warrenl@redhat.com>
+ * @author Warren Levy (warrenl@redhat.com)
  * @date June 1, 2001
  */
-
 public abstract class LdapReferralException extends ReferralException
 {
   protected LdapReferralException()
index deb5605..5f27c95 100644 (file)
@@ -1,5 +1,5 @@
 /* DirObjectFactory.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,15 +39,15 @@ exception statement from your version. */
 package javax.naming.spi;
 
 import java.util.Hashtable;
+
 import javax.naming.Context;
 import javax.naming.Name;
 import javax.naming.directory.Attributes;
  
 /**
- * @author Warren Levy <warrenl@redhat.com>
+ * @author Warren Levy (warrenl@redhat.com)
  * @date June 1, 2001
  */
-
 public interface DirObjectFactory extends ObjectFactory
 {
   Object getObjectInstance(Object obj, Name name, Context nameCtx,
index 67e790d..b846dc9 100644 (file)
@@ -39,16 +39,16 @@ exception statement from your version. */
 package javax.naming.spi;
 
 import java.util.Hashtable;
+
 import javax.naming.Context;
 import javax.naming.Name;
 import javax.naming.NamingException;
 import javax.naming.directory.Attributes;
  
 /**
- * @author Warren Levy <warrenl@redhat.com>
+ * @author Warren Levy (warrenl@redhat.com)
  * @date June 1, 2001
  */
-
 public interface DirStateFactory extends StateFactory
 {
   // Inner class
index 67de21c..c43a28d 100644 (file)
@@ -1,5 +1,5 @@
 /* DirectoryManager.java --
-   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -41,6 +41,7 @@ package javax.naming.spi;
 import java.util.Enumeration;
 import java.util.Hashtable;
 import java.util.StringTokenizer;
+
 import javax.naming.CannotProceedException;
 import javax.naming.Context;
 import javax.naming.Name;
index 299bfd6..044269c 100644 (file)
@@ -1,5 +1,5 @@
 /* InitialContextFactory.java --
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,6 +39,7 @@ exception statement from your version. */
 package javax.naming.spi;
 
 import java.util.Hashtable;
+
 import javax.naming.Context;
 import javax.naming.NamingException;
 
index 53a11aa..6144a31 100644 (file)
@@ -1,5 +1,5 @@
 /* InitialContextFactoryBuilder.java --
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,6 +39,7 @@ exception statement from your version. */
 package javax.naming.spi;
 
 import java.util.Hashtable;
+
 import javax.naming.NamingException;
 
 public interface InitialContextFactoryBuilder
index 6c75e72..543831c 100644 (file)
@@ -1,5 +1,5 @@
 /* NamingManager.java --
-   Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2002, 2003, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -41,6 +41,7 @@ package javax.naming.spi;
 import java.util.Enumeration;
 import java.util.Hashtable;
 import java.util.StringTokenizer;
+
 import javax.naming.CannotProceedException;
 import javax.naming.Context;
 import javax.naming.Name;
index 0861b44..2415a85 100644 (file)
@@ -1,5 +1,5 @@
 /* ObjectFactory.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,6 +39,7 @@ exception statement from your version. */
 package javax.naming.spi;
 
 import java.util.Hashtable;
+
 import javax.naming.Context;
 import javax.naming.Name;
 
index 1d0808c..35a8095 100644 (file)
@@ -1,5 +1,5 @@
 /* ObjectFactoryBuilder.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,13 +39,13 @@ exception statement from your version. */
 package javax.naming.spi;
 
 import java.util.Hashtable;
+
 import javax.naming.NamingException;
  
 /**
- * @author Warren Levy <warrenl@redhat.com>
+ * @author Warren Levy (warrenl@redhat.com)
  * @date June 1, 2001
  */
-
 public interface ObjectFactoryBuilder
 {
   ObjectFactory createObjectFactory(Object obj,
index 6316f28..14b91ea 100644 (file)
@@ -1,5 +1,5 @@
 /* StateFactory.java --
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,15 +39,15 @@ exception statement from your version. */
 package javax.naming.spi;
 
 import java.util.Hashtable;
+
 import javax.naming.Context;
 import javax.naming.Name;
 import javax.naming.NamingException;
  
 /**
- * @author Warren Levy <warrenl@redhat.com>
+ * @author Warren Levy (warrenl@redhat.com)
  * @date June 1, 2001
  */
-
 public interface StateFactory
 {
   Object getStateToBind(Object obj, Name name, Context nameCtx,