Commit 2c69d1e0 by Michael Koch Committed by Michael Koch

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
parent d69201f4
2004-10-21 Michael Koch <konqueror@gmx.de> 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/Cipher.java,
javax/crypto/EncryptedPrivateKeyInfo.java, javax/crypto/EncryptedPrivateKeyInfo.java,
javax/crypto/ExemptionMechanism.java, javax/crypto/ExemptionMechanism.java,
......
/* BasicAttribute.java -- /* 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. This file is part of GNU Classpath.
...@@ -40,12 +40,13 @@ package javax.naming.directory; ...@@ -40,12 +40,13 @@ package javax.naming.directory;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import java.util.Vector; import java.util.Vector;
import javax.naming.NamingEnumeration; import javax.naming.NamingEnumeration;
import javax.naming.NamingException; import javax.naming.NamingException;
import javax.naming.OperationNotSupportedException; import javax.naming.OperationNotSupportedException;
/** /**
* @author Tom Tromey <tromey@redhat.com> * @author Tom Tromey (tromey@redhat.com)
* @date June 20, 2001 * @date June 20, 2001
*/ */
public class BasicAttribute implements Attribute public class BasicAttribute implements Attribute
......
/* BasicAttributes.java -- /* 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. This file is part of GNU Classpath.
...@@ -40,11 +40,12 @@ package javax.naming.directory; ...@@ -40,11 +40,12 @@ package javax.naming.directory;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import java.util.Vector; import java.util.Vector;
import javax.naming.NamingEnumeration; import javax.naming.NamingEnumeration;
import javax.naming.NamingException; import javax.naming.NamingException;
/** /**
* @author Tom Tromey <tromey@redhat.com> * @author Tom Tromey (tromey@redhat.com)
* @date June 22, 2001 * @date June 22, 2001
*/ */
public class BasicAttributes implements Attributes public class BasicAttributes implements Attributes
......
/* InitialDirContext.java -- /* 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. This file is part of GNU Classpath.
...@@ -39,6 +39,7 @@ exception statement from your version. */ ...@@ -39,6 +39,7 @@ exception statement from your version. */
package javax.naming.directory; package javax.naming.directory;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.InitialContext; import javax.naming.InitialContext;
import javax.naming.Name; import javax.naming.Name;
...@@ -48,7 +49,7 @@ import javax.naming.NoInitialContextException; ...@@ -48,7 +49,7 @@ import javax.naming.NoInitialContextException;
import javax.naming.NotContextException; import javax.naming.NotContextException;
/** /**
* @author Tom Tromey <tromey@redhat.com> * @author Tom Tromey (tromey@redhat.com)
* @date June 25, 2001 * @date June 25, 2001
*/ */
public class InitialDirContext extends InitialContext implements DirContext public class InitialDirContext extends InitialContext implements DirContext
......
/* NamingEvent.java -- /* NamingEvent.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,13 +39,13 @@ exception statement from your version. */ ...@@ -39,13 +39,13 @@ exception statement from your version. */
package javax.naming.event; package javax.naming.event;
import java.util.EventObject; import java.util.EventObject;
import javax.naming.Binding; import javax.naming.Binding;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy (warrenl@redhat.com)
* @date June 5, 2001 * @date June 5, 2001
*/ */
public class NamingEvent extends EventObject public class NamingEvent extends EventObject
{ {
public static final int OBJECT_ADDED = 0; public static final int OBJECT_ADDED = 0;
......
/* ControlFactory.java -- /* ControlFactory.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -40,11 +40,12 @@ package javax.naming.ldap; ...@@ -40,11 +40,12 @@ package javax.naming.ldap;
import java.util.Hashtable; import java.util.Hashtable;
import java.util.StringTokenizer; import java.util.StringTokenizer;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.NamingException; import javax.naming.NamingException;
/** /**
* @author Tom Tromey <tromey@redhat.com> * @author Tom Tromey (tromey@redhat.com)
* @date June 22, 2001 * @date June 22, 2001
*/ */
public abstract class ControlFactory public abstract class ControlFactory
......
/* ExtendedRequest.java -- /* ExtendedRequest.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,13 +39,13 @@ exception statement from your version. */ ...@@ -39,13 +39,13 @@ exception statement from your version. */
package javax.naming.ldap; package javax.naming.ldap;
import java.io.Serializable; import java.io.Serializable;
import javax.naming.NamingException; import javax.naming.NamingException;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy (warrenl@redhat.com)
* @date June 1, 2001 * @date June 1, 2001
*/ */
public interface ExtendedRequest extends Serializable public interface ExtendedRequest extends Serializable
{ {
String getID(); String getID();
......
/* InitialLdapContext.java -- /* InitialLdapContext.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,6 +39,7 @@ exception statement from your version. */ ...@@ -39,6 +39,7 @@ exception statement from your version. */
package javax.naming.ldap; package javax.naming.ldap;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.NamingException; import javax.naming.NamingException;
import javax.naming.NoInitialContextException; import javax.naming.NoInitialContextException;
...@@ -46,7 +47,7 @@ import javax.naming.NotContextException; ...@@ -46,7 +47,7 @@ import javax.naming.NotContextException;
import javax.naming.directory.InitialDirContext; import javax.naming.directory.InitialDirContext;
/** /**
* @author Tom Tromey <tromey@redhat.com> * @author Tom Tromey (tromey@redhat.com)
* @date June 21, 2001 * @date June 21, 2001
*/ */
public class InitialLdapContext public class InitialLdapContext
......
/* LdapReferralException.java -- /* LdapReferralException.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,15 +39,15 @@ exception statement from your version. */ ...@@ -39,15 +39,15 @@ exception statement from your version. */
package javax.naming.ldap; package javax.naming.ldap;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.NamingException; import javax.naming.NamingException;
import javax.naming.ReferralException; import javax.naming.ReferralException;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy (warrenl@redhat.com)
* @date June 1, 2001 * @date June 1, 2001
*/ */
public abstract class LdapReferralException extends ReferralException public abstract class LdapReferralException extends ReferralException
{ {
protected LdapReferralException() protected LdapReferralException()
......
/* DirObjectFactory.java -- /* DirObjectFactory.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,15 +39,15 @@ exception statement from your version. */ ...@@ -39,15 +39,15 @@ exception statement from your version. */
package javax.naming.spi; package javax.naming.spi;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.Name; import javax.naming.Name;
import javax.naming.directory.Attributes; import javax.naming.directory.Attributes;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy (warrenl@redhat.com)
* @date June 1, 2001 * @date June 1, 2001
*/ */
public interface DirObjectFactory extends ObjectFactory public interface DirObjectFactory extends ObjectFactory
{ {
Object getObjectInstance(Object obj, Name name, Context nameCtx, Object getObjectInstance(Object obj, Name name, Context nameCtx,
......
...@@ -39,16 +39,16 @@ exception statement from your version. */ ...@@ -39,16 +39,16 @@ exception statement from your version. */
package javax.naming.spi; package javax.naming.spi;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.Name; import javax.naming.Name;
import javax.naming.NamingException; import javax.naming.NamingException;
import javax.naming.directory.Attributes; import javax.naming.directory.Attributes;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy (warrenl@redhat.com)
* @date June 1, 2001 * @date June 1, 2001
*/ */
public interface DirStateFactory extends StateFactory public interface DirStateFactory extends StateFactory
{ {
// Inner class // Inner class
......
/* DirectoryManager.java -- /* 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. This file is part of GNU Classpath.
...@@ -41,6 +41,7 @@ package javax.naming.spi; ...@@ -41,6 +41,7 @@ package javax.naming.spi;
import java.util.Enumeration; import java.util.Enumeration;
import java.util.Hashtable; import java.util.Hashtable;
import java.util.StringTokenizer; import java.util.StringTokenizer;
import javax.naming.CannotProceedException; import javax.naming.CannotProceedException;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.Name; import javax.naming.Name;
......
/* InitialContextFactory.java -- /* InitialContextFactory.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,6 +39,7 @@ exception statement from your version. */ ...@@ -39,6 +39,7 @@ exception statement from your version. */
package javax.naming.spi; package javax.naming.spi;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.NamingException; import javax.naming.NamingException;
......
/* InitialContextFactoryBuilder.java -- /* InitialContextFactoryBuilder.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,6 +39,7 @@ exception statement from your version. */ ...@@ -39,6 +39,7 @@ exception statement from your version. */
package javax.naming.spi; package javax.naming.spi;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.NamingException; import javax.naming.NamingException;
public interface InitialContextFactoryBuilder public interface InitialContextFactoryBuilder
......
/* NamingManager.java -- /* 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. This file is part of GNU Classpath.
...@@ -41,6 +41,7 @@ package javax.naming.spi; ...@@ -41,6 +41,7 @@ package javax.naming.spi;
import java.util.Enumeration; import java.util.Enumeration;
import java.util.Hashtable; import java.util.Hashtable;
import java.util.StringTokenizer; import java.util.StringTokenizer;
import javax.naming.CannotProceedException; import javax.naming.CannotProceedException;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.Name; import javax.naming.Name;
......
/* ObjectFactory.java -- /* ObjectFactory.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,6 +39,7 @@ exception statement from your version. */ ...@@ -39,6 +39,7 @@ exception statement from your version. */
package javax.naming.spi; package javax.naming.spi;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.Name; import javax.naming.Name;
......
/* ObjectFactoryBuilder.java -- /* ObjectFactoryBuilder.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,13 +39,13 @@ exception statement from your version. */ ...@@ -39,13 +39,13 @@ exception statement from your version. */
package javax.naming.spi; package javax.naming.spi;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.NamingException; import javax.naming.NamingException;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy (warrenl@redhat.com)
* @date June 1, 2001 * @date June 1, 2001
*/ */
public interface ObjectFactoryBuilder public interface ObjectFactoryBuilder
{ {
ObjectFactory createObjectFactory(Object obj, ObjectFactory createObjectFactory(Object obj,
......
/* StateFactory.java -- /* StateFactory.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -39,15 +39,15 @@ exception statement from your version. */ ...@@ -39,15 +39,15 @@ exception statement from your version. */
package javax.naming.spi; package javax.naming.spi;
import java.util.Hashtable; import java.util.Hashtable;
import javax.naming.Context; import javax.naming.Context;
import javax.naming.Name; import javax.naming.Name;
import javax.naming.NamingException; import javax.naming.NamingException;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy (warrenl@redhat.com)
* @date June 1, 2001 * @date June 1, 2001
*/ */
public interface StateFactory public interface StateFactory
{ {
Object getStateToBind(Object obj, Name name, Context nameCtx, Object getStateToBind(Object obj, Name name, Context nameCtx,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment