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

  6. /**
  7.  * The Interface PageCommandCommitteeRankingConstants.
  8.  */
  9. public interface PageCommandCommitteeRankingConstants {



  10.     /** The command committee ranking overview. */
  11.     PageModeMenuCommand COMMAND_COMMITTEE_RANKING_OVERVIEW = new PageModeMenuCommand(
  12.                      UserViews.COMMITTEE_RANKING_VIEW_NAME, PageMode.OVERVIEW);

  13.     /** The command committee ranking datagrid. */
  14.     PageModeMenuCommand COMMAND_COMMITTEE_RANKING_DATAGRID = new PageModeMenuCommand(
  15.                      UserViews.COMMITTEE_RANKING_VIEW_NAME, PageMode.DATAGRID);


  16.     /** The committee ranking command pagevisit history. */
  17.     PageModeMenuCommand COMMITTEE_RANKING_COMMAND_PAGEVISIT_HISTORY = new PageModeMenuCommand(
  18.                      UserViews.COMMITTEE_RANKING_VIEW_NAME, PageMode.PAGEVISITHISTORY);


  19.         /** The command current committees by party days served. */
  20.     PageModeMenuCommand COMMAND_CURRENT_COMMITTEES_BY_PARTY_DAYS_SERVED = new PageModeMenuCommand(
  21.                      UserViews.COMMITTEE_RANKING_VIEW_NAME,
  22.                      PageMode.CHARTS, ChartIndicators.CURRENTCOMMITTEESBYPARTYDAYSSERVED.toString());


  23.     /** The command current committees by party days served. */
  24.     PageModeMenuCommand COMMAND_CURRENT_COMMITTEES_ALL_PARTIES = new PageModeMenuCommand(
  25.                  UserViews.COMMITTEE_RANKING_VIEW_NAME,
  26.                  PageMode.CHARTS, ChartIndicators.ALLPARTIES.toString());

  27.     /** The command all committees by headcount. */
  28.     PageModeMenuCommand COMMAND_ALL_COMMITTEES_BY_HEADCOUNT = new PageModeMenuCommand(
  29.                      UserViews.COMMITTEE_RANKING_VIEW_NAME,
  30.                      PageMode.CHARTS, ChartIndicators.ALLCOMMITTEESBYHEADCOUNT.toString());

  31.     /** The command current committees by headcount. */
  32.     PageModeMenuCommand COMMAND_CURRENT_COMMITTEES_BY_HEADCOUNT = new PageModeMenuCommand(
  33.                      UserViews.COMMITTEE_RANKING_VIEW_NAME,
  34.                      PageMode.CHARTS, ChartIndicators.CURRENTCOMMITTEESBYHEADCOUNT.toString());


  35. }