irc.ident
Interface IdentListener

All Known Implementing Classes:
IRCApplication

public interface IdentListener

The ident server listener.


Field Summary
static int IDENT_DEFAULT
           
static int IDENT_ERROR
           
static int IDENT_NOT_FOUND
           
static int IDENT_OK
           
 
Method Summary
 void identLeaving(java.lang.String message)
          The ident server is leaving.
 void identRequested(java.lang.String source, java.lang.Integer result, java.lang.String reply)
          The ident server has received a request.
 void identRunning(java.lang.Integer port)
          The ident server is running.
 

Field Detail

IDENT_ERROR

public static final int IDENT_ERROR
See Also:
Constant Field Values

IDENT_OK

public static final int IDENT_OK
See Also:
Constant Field Values

IDENT_DEFAULT

public static final int IDENT_DEFAULT
See Also:
Constant Field Values

IDENT_NOT_FOUND

public static final int IDENT_NOT_FOUND
See Also:
Constant Field Values
Method Detail

identRequested

public void identRequested(java.lang.String source,
                           java.lang.Integer result,
                           java.lang.String reply)
The ident server has received a request.

Parameters:
source - the request source.
result - the request result.
reply - the replied result.

identRunning

public void identRunning(java.lang.Integer port)
The ident server is running.

Parameters:
port - port on wich the server is running.

identLeaving

public void identLeaving(java.lang.String message)
The ident server is leaving.

Parameters:
message - leaving message.