mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-14 04:04:32 +08:00
22 lines
510 B
Java
22 lines
510 B
Java
|
/* 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();
|
||
|
}
|