PageCommandCountryRankingConstants.java

  1. package com.hack23.cia.web.impl.ui.application.views.common.menufactory.api.pagecommands;

  2. import com.hack23.cia.web.impl.ui.application.views.common.pagelinks.api.PageModeMenuCommand;
  3. import com.hack23.cia.web.impl.ui.application.views.common.viewnames.PageMode;
  4. import com.hack23.cia.web.impl.ui.application.views.common.viewnames.UserViews;

  5. /**
  6.  * The Interface PageCommandCountryRankingConstants.
  7.  */
  8. public interface PageCommandCountryRankingConstants {

  9.     /** The command country ranking overview. */
  10.     // Standardize to: COMMAND_[VIEW]_[ACTION]
  11.     PageModeMenuCommand COMMAND_COUNTRY_RANKING_OVERVIEW = new PageModeMenuCommand(
  12.                      UserViews.COUNTRY_RANKING_VIEW_NAME, PageMode.OVERVIEW);


  13.     /** The command country ranking indicators. */
  14.     PageModeMenuCommand COMMAND_COUNTRY_RANKING_INDICATORS = new PageModeMenuCommand(
  15.                      UserViews.COUNTRY_RANKING_VIEW_NAME, PageMode.INDICATORS);


  16. }