FTP-Server API

server.commands
Class User

java.lang.Object
  |
  +--server.commands.AbstractCommand
        |
        +--server.commands.User
All Implemented Interfaces:
Comparable, Serializable

public class User
extends AbstractCommand

See Also:
Serialized Form

Field Summary
static int usage
           
 
Fields inherited from class server.commands.AbstractCommand
command, name, originalOrder, ses
 
Constructor Summary
User()
           
 
Method Summary
 void carryOut(String order)
          This method holds the implementation for the command.
 int getUsage()
           
 void start()
          Empty method that can be overridden, and is called at instantiation time.
 
Methods inherited from class server.commands.AbstractCommand
action, addCommandLast, build, clone, compareTo, countUp, equals, fileToSystem, makeFileOfOrder, save, sort, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

usage

public static int usage
Constructor Detail

User

public User()
Method Detail

getUsage

public int getUsage()

start

public void start()
Description copied from class: AbstractCommand
Empty method that can be overridden, and is called at instantiation time.

Overrides:
start in class AbstractCommand

carryOut

public void carryOut(String order)
Description copied from class: AbstractCommand
This method holds the implementation for the command. It is called with the result of a removeFirst(String order) call.

Specified by:
carryOut in class AbstractCommand
Parameters:
order - the order, except the first word.

FTP-Server API