FTP-Server API

Uses of Class
server.UserSession

Packages that use UserSession
graphic   
server   
server.event   
server.services   
 

Uses of UserSession in graphic
 

Methods in graphic with parameters of type UserSession
 void UserList.clientConnected(UserSession userSession)
           
 void UserList.clientDisconnected(UserSession userSession)
           
 void Sniffer.userLogedIn(UserSession usersession)
           
 void Sniffer.userLogedOut(UserSession usersession)
           
 void Sniffer.userDisconnected(UserSession userSession, int reasonCode)
           
 boolean SetupIntelligence.letSessionContinue(String command, UserSession us)
           
 boolean SetupIntelligence.disconnectSession(String command, UserSession us)
           
 void Main.clientConnected(UserSession userSession)
           
 void Main.clientDisconnected(UserSession userSession)
           
 void Main.SessionObserver.userLogedIn(UserSession userSession)
           
 

Constructors in graphic with parameters of type UserSession
Sniffer(UserSession ses)
           
 

Uses of UserSession in server
 

Methods in server that return UserSession
 UserSession[] Server.getOnlineUsers()
          Returns an array containing all online clients.
 

Methods in server with parameters of type UserSession
 boolean SurvailanceController.letSessionContinue(String command, UserSession userSession)
          Should validate the clients commands and return true if the command lets the client continue his session.
 boolean SurvailanceController.disconnectSession(String command, UserSession userSession)
          Should find out if the command results in a disconnection of the client.
 void Survailance.clientConnected(UserSession userSession)
          When a client connects this method is automatically called.
 void Survailance.clientDisconnected(UserSession userSession)
          When a client disconnects this method is automatically called.
 

Uses of UserSession in server.event
 

Methods in server.event with parameters of type UserSession
 void UserSessionObserverAdapter.userLogedIn(UserSession usersession)
           
 void UserSessionObserverAdapter.userLogedOut(UserSession usersession)
           
 void UserSessionObserverAdapter.userDisconnected(UserSession userSession, int reasonCode)
           
 void UserSessionObserver.userLogedIn(UserSession usersession)
          When the user logs in, this method is called.
 void UserSessionObserver.userLogedOut(UserSession usersession)
          When a user loges out, this method is called.
 void UserSessionObserver.userDisconnected(UserSession userSession, int reasonCode)
          When a user gets disconnected, this method is called
 void ServerObserver.clientConnected(UserSession userSession)
          The method is called when a new client connects to the FTP-Server.
 void ServerObserver.clientDisconnected(UserSession userSession)
          The method is called when a clients disconnects from the FTP-Server
 

Uses of UserSession in server.services
 

Subclasses of UserSession in server.services
 class ExtendedUserSession
           
 


FTP-Server API