Package com.alexnevsky.hotel.commands.general

Examples of com.alexnevsky.hotel.commands.general.LogoutCommand


   * Construct command's catalogues.
   */
  private RequestHelper() {
    // general commands
    this.commandCatalog.put(AttributesManager.COMMAND_LOGIN, new LoginCommand());
    this.commandCatalog.put(AttributesManager.COMMAND_LOGOUT, new LogoutCommand());
    this.commandCatalog.put(AttributesManager.COMMAND_LANG, new LangCommand());

    // customer commands
    this.commandCatalog.put(AttributesManager.COMMAND_BOOKING_ROOM, new BookingRoomCommand());
    this.commandCatalog.put(AttributesManager.COMMAND_PROCESS_FORM, new ProcessFormCommand());
View Full Code Here

TOP

Related Classes of com.alexnevsky.hotel.commands.general.LogoutCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.