diff options
author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-27 03:16:14 +0000 |
---|---|---|
committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-27 03:16:14 +0000 |
commit | c59e6378223eba3d47ebeb9d261e762322c2d661 (patch) | |
tree | fddd25f01c276e915b483a1138befefd75ad4852 /libjava/javax/naming/spi/InitialContextFactory.java | |
parent | 378db68f2e728a6ea8e1a814dae2433b32ef65fa (diff) | |
download | ppe42-gcc-c59e6378223eba3d47ebeb9d261e762322c2d661.tar.gz ppe42-gcc-c59e6378223eba3d47ebeb9d261e762322c2d661.zip |
Initial jndi check-in
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37770 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/javax/naming/spi/InitialContextFactory.java')
-rw-r--r-- | libjava/javax/naming/spi/InitialContextFactory.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libjava/javax/naming/spi/InitialContextFactory.java b/libjava/javax/naming/spi/InitialContextFactory.java new file mode 100644 index 00000000000..493b3f5234f --- /dev/null +++ b/libjava/javax/naming/spi/InitialContextFactory.java @@ -0,0 +1,18 @@ +/* Copyright (C) 2000 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 java.util.Hashtable; +import javax.naming.Context; +import javax.naming.NamingException; + +public interface InitialContextFactory +{ + public Context getInitialContext (Hashtable environment) throws NamingException; +} |