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>
* 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,
......
/* 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
......
/* 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
......
/* 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
......
/* 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;
......
/* 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
......
/* 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();
......
/* 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
......
/* 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()
......
/* 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,
......
......@@ -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
......
/* 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;
......
/* 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;
......
/* 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
......
/* 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;
......
/* 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;
......
/* 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,
......
/* 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,
......
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