]> gcc.gnu.org Git - gcc.git/blob - libjava/javax/naming/spi/InitialContextFactory.java
Initial jndi check-in
[gcc.git] / libjava / javax / naming / spi / InitialContextFactory.java
1 /* Copyright (C) 2000 Free Software Foundation
2
3 This file is part of libgcj.
4
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
8
9 package javax.naming.spi;
10
11 import java.util.Hashtable;
12 import javax.naming.Context;
13 import javax.naming.NamingException;
14
15 public interface InitialContextFactory
16 {
17 public Context getInitialContext (Hashtable environment) throws NamingException;
18 }
This page took 0.036629 seconds and 5 git commands to generate.