diff options
Diffstat (limited to 'libjava/javax/naming/spi/ObjectFactoryBuilder.java')
-rw-r--r-- | libjava/javax/naming/spi/ObjectFactoryBuilder.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libjava/javax/naming/spi/ObjectFactoryBuilder.java b/libjava/javax/naming/spi/ObjectFactoryBuilder.java new file mode 100644 index 00000000000..e8796036aa4 --- /dev/null +++ b/libjava/javax/naming/spi/ObjectFactoryBuilder.java @@ -0,0 +1,23 @@ +/* Copyright (C) 2001 Free Software Foundation + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +package javax.naming.spi; +import javax.naming.*; +import java.util.Hashtable; + +/** + * @author Warren Levy <warrenl@redhat.com> + * @date June 1, 2001 + */ + +public interface ObjectFactoryBuilder +{ + public ObjectFactory createObjectFactory(Object obj, + Hashtable environment) + throws NamingException; +} |