Uses of Class
com.Prominic.jFTPd.FTPUser

Packages that use FTPUser
com.Prominic.jFTPd   
 

Uses of FTPUser in com.Prominic.jFTPd
 

Fields in com.Prominic.jFTPd declared as FTPUser
private  FTPUser FTPConnection.theUser
           
protected  FTPUser FTPEvent.user
           
 

Methods in com.Prominic.jFTPd that return FTPUser
 FTPUser FTPEvent.getUser()
          Returns the user for whom the event has been generated.
 FTPUser FTPConnection.getUser()
          Gets the current user using this connection.
 FTPUser FTPUserListSecuritySource.userWithUsernameAndPassword(java.lang.String username, java.lang.String password)
           
abstract  FTPUser FTPSecuritySource.userWithUsernameAndPassword(java.lang.String username, java.lang.String password)
          Creates an FTPUser based on the username and password.
 FTPUser FTPAnonSecuritySource.userWithUsernameAndPassword(java.lang.String username, java.lang.String password)
          Returns an FTPUser object for the given username and password.
 

Methods in com.Prominic.jFTPd with parameters of type FTPUser
 boolean FTPUserListSecuritySource.canDelete(FTPUser user, java.lang.String path)
           
abstract  boolean FTPSecuritySource.canDelete(FTPUser user, java.lang.String path)
          Implement this if the given user can delete the specified path.
 boolean FTPAnonSecuritySource.canDelete(FTPUser user, java.lang.String path)
          Returns true if the user can delete files from the given path.
 boolean FTPUserListSecuritySource.canDownload(FTPUser user, java.lang.String path)
           
abstract  boolean FTPSecuritySource.canDownload(FTPUser user, java.lang.String path)
          Implement this if the given user can download from the specified path.
 boolean FTPAnonSecuritySource.canDownload(FTPUser user, java.lang.String path)
          Returns true if the user can download files from the given path.
 boolean FTPUserListSecuritySource.canRename(FTPUser user, java.lang.String frompath, java.lang.String topath)
           
abstract  boolean FTPSecuritySource.canRename(FTPUser user, java.lang.String frompath, java.lang.String topath)
          Implement this if the given user can rename the specified path.
 boolean FTPAnonSecuritySource.canRename(FTPUser user, java.lang.String frompath, java.lang.String topath)
          Returns true if the user can rename files from the given path to the given path.
 boolean FTPUserListSecuritySource.canUpload(FTPUser user, java.lang.String path)
           
abstract  boolean FTPSecuritySource.canUpload(FTPUser user, java.lang.String path)
          Implement this if the given user can upload to the specified path.
 boolean FTPAnonSecuritySource.canUpload(FTPUser user, java.lang.String path)
           
 

Constructors in com.Prominic.jFTPd with parameters of type FTPUser
FTPEvent(FTPUser user, java.net.InetAddress address, int action, java.lang.Object[] args)
          Default constructor.