PageCommandGovernmentBodyRankingConstants.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.ChartIndicators;
  4. import com.hack23.cia.web.impl.ui.application.views.common.viewnames.GovernmentBodyPageMode;
  5. import com.hack23.cia.web.impl.ui.application.views.common.viewnames.PageMode;
  6. import com.hack23.cia.web.impl.ui.application.views.common.viewnames.UserViews;

  7. /**
  8.  * The Interface PageCommandGovernmentBodyRankingConstants.
  9.  */
  10. public interface PageCommandGovernmentBodyRankingConstants {

  11.     /** The command government body ranking datagrid. */
  12.     PageModeMenuCommand COMMAND_GOVERNMENT_BODY_RANKING_DATAGRID = new PageModeMenuCommand(
  13.                      UserViews.GOVERNMENT_BODY_RANKING_VIEW_NAME, PageMode.DATAGRID);

  14.     /** The command government body ranking overview. */
  15.     PageModeMenuCommand COMMAND_GOVERNMENT_BODY_RANKING_OVERVIEW = new PageModeMenuCommand(
  16.                      UserViews.GOVERNMENT_BODY_RANKING_VIEW_NAME, PageMode.OVERVIEW);

  17.     /** The command government bodies headcount. */
  18.     PageModeMenuCommand COMMAND_GOVERNMENT_BODIES_HEADCOUNT = new PageModeMenuCommand(
  19.                      UserViews.GOVERNMENT_BODY_RANKING_VIEW_NAME,
  20.                      PageMode.CHARTS, GovernmentBodyPageMode.HEADCOUNT.toString());

  21.     /** The command government bodies income. */
  22.     PageModeMenuCommand COMMAND_GOVERNMENT_BODIES_INCOME = new PageModeMenuCommand(
  23.                      UserViews.GOVERNMENT_BODY_RANKING_VIEW_NAME,
  24.                      PageMode.CHARTS, GovernmentBodyPageMode.INCOME.toString());

  25.     /** The command government bodies expenditure. */
  26.     PageModeMenuCommand COMMAND_GOVERNMENT_BODIES_EXPENDITURE = new PageModeMenuCommand(
  27.                      UserViews.GOVERNMENT_BODY_RANKING_VIEW_NAME,
  28.                      PageMode.CHARTS, GovernmentBodyPageMode.EXPENDITURE.toString());

  29.     /** The command government outcome. */
  30.     PageModeMenuCommand COMMAND_GOVERNMENT_OUTCOME = new PageModeMenuCommand(
  31.                      UserViews.GOVERNMENT_BODY_RANKING_VIEW_NAME,
  32.                      PageMode.CHARTS, ChartIndicators.GOVERNMENTOUTCOME.toString());

  33.     /** The command charts all government role gantt. */
  34.     PageModeMenuCommand COMMAND_CHARTS_ALL_GOVERNMENT_ROLE_GANTT = new PageModeMenuCommand(
  35.                      UserViews.GOVERNMENT_BODY_RANKING_VIEW_NAME,
  36.                      PageMode.CHARTS, ChartIndicators.ALLGOVERNMENTROLEGANTT.toString());

  37.     /** The government ranking command pagevisit history. */
  38.     PageModeMenuCommand GOVERNMENT_RANKING_COMMAND_PAGEVISIT_HISTORY = new PageModeMenuCommand(
  39.                      UserViews.GOVERNMENT_BODY_RANKING_VIEW_NAME, PageMode.PAGEVISITHISTORY);


  40. }