Uses of Class
bootstrapP.Command

Packages that use Command
bootstrapP   
 

Uses of Command in bootstrapP
 

Methods in bootstrapP that return Command
 Command TextualInterfaceIt.getCommand()
           
 Command HumanInterface.getCommand()
          Gets the next command to execute from the interface.
static Command Command.makeAddMS(java.lang.String hostname, java.lang.String password, int rmiPort, int udpPort)
          "add message server" command constructor.
static Command Command.makeBackup(java.lang.String filename)
          "backup" command constructor.
static Command Command.makeBlockAssignation(int id)
          "block assignation" command constructor.
static Command Command.makeDeleteUser(java.lang.String nick)
          "delete user" command constructor.
static Command Command.makeMoveUser(java.lang.String nick, int id)
          "move user" command constructor.
static Command Command.makeRemoveMS(int id)
          "remove message server" command constructor.
static Command Command.makeShowAll()
          "show all" command constructor.
static Command Command.makeShowGlobalStats()
          "show global statitics" command constructor.
static Command Command.makeShutdown(int id)
          "shutdown" command constructor.
static Command Command.makeTestPresence(int id)
          "test presence" command constructor.
static Command Command.makeUnblockAssignation(int id)
          "unblock assignation" command constructor.
static Command Command.makeUsersList(int id)
          "show users list" command constructor.
 

Methods in bootstrapP with parameters of type Command
private  void HumanListener.executeAddMS(Command com)
          Performs the "add message server" command.
private  void HumanListener.executeBackup(Command com)
          Performs the "backup" command.
private  void HumanListener.executeBlockAssignation(Command com, boolean block)
          Performs the "block assignation" and "unblock assignation" commands.
private  void HumanListener.executeDeleteUser(Command com)
          Performs the "delete user" command.
private  void HumanListener.executeMoveUser(Command com)
          Performs the "move user" command.
private  void HumanListener.executeRemoveMS(Command com)
          Performs the "remove message server" command.
private  void HumanListener.executeShutdown(Command com)
          Performs the "shutdown" command.
private  void HumanListener.executeTestPresence(Command com)
          Performs the "test presence" command.
private  void HumanListener.executeUserList(Command com)
          Performs the "show user list" command.