BasicAttribute.java, [...]: Import cleanup.

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.

From-SVN: r89399
This commit is contained in:
Michael Koch 2004-10-21 20:50:13 +00:00 committed by Michael Koch
parent d69201f46e
commit 2c69d1e0f2
18 changed files with 66 additions and 35 deletions

View File

@ -1,3 +1,24 @@
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,

View 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

View 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

View 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

View 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;

View 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

View 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();

View 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

View 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()

View 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,

View 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

View 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;

View 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;

View 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

View 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;

View 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;

View 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,

View 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,