diff options
Diffstat (limited to 'libjava/javax/naming/directory/DirContext.java')
-rw-r--r-- | libjava/javax/naming/directory/DirContext.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libjava/javax/naming/directory/DirContext.java b/libjava/javax/naming/directory/DirContext.java new file mode 100644 index 00000000000..50deca0e445 --- /dev/null +++ b/libjava/javax/naming/directory/DirContext.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.directory; + +import javax.naming.*; + +public interface DirContext extends Context +{ + public Attributes getAttributes (String name); + public Attributes getAttributes (String name, String[] attrIds); +} + |