FTP-Server API

server
Interface Session

All Known Implementing Classes:
LogFileSession, UserSession

public interface Session

Represents a Session from a client.


Method Summary
 String getClientIP()
          The clients ip.
 Vector getConversation()
          Al communication between the client and the server.
 String getLogin()
          The clients loginname.
 String getLogonTime()
          The time the client logged onto the server.
 int getSessionNr()
          The sessionnumber, that this sessionnumber has.
 

Method Detail

getClientIP

public String getClientIP()
The clients ip.

Returns:
ip

getLogin

public String getLogin()
The clients loginname.

Returns:
loginname

getLogonTime

public String getLogonTime()
The time the client logged onto the server. The format is: D. 23.05.2002 kl. 18:00:27

Returns:
date+time

getSessionNr

public int getSessionNr()
The sessionnumber, that this sessionnumber has.

Returns:
number

getConversation

public Vector getConversation()
Al communication between the client and the server.

Returns:
each object in the vector represents a line.

FTP-Server API