diff options
Diffstat (limited to 'libjava/javax/naming/ldap/UnsolicitedNotification.java')
-rw-r--r-- | libjava/javax/naming/ldap/UnsolicitedNotification.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libjava/javax/naming/ldap/UnsolicitedNotification.java b/libjava/javax/naming/ldap/UnsolicitedNotification.java new file mode 100644 index 00000000000..539d5999267 --- /dev/null +++ b/libjava/javax/naming/ldap/UnsolicitedNotification.java @@ -0,0 +1,21 @@ +/* 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.ldap; +import javax.naming.*; + +/** + * @author Warren Levy <warrenl@redhat.com> + * @date June 1, 2001 + */ + +public interface UnsolicitedNotification extends ExtendedResponse, HasControls +{ + public String[] getReferrals(); + public NamingException getException(); +} |