PageCommandParliamentRankingConstants.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.RiskIndicators;
  6. import com.hack23.cia.web.impl.ui.application.views.common.viewnames.UserViews;

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


  11.     /** The command parliament ranking overview. */
  12.     PageModeMenuCommand COMMAND_PARLIAMENT_RANKING_OVERVIEW = new PageModeMenuCommand(
  13.                      UserViews.PARLIAMENT_RANKING_VIEW_NAME, PageMode.OVERVIEW);

  14.     /** The command risk summary. */
  15.     PageModeMenuCommand COMMAND_RISK_SUMMARY = new PageModeMenuCommand(
  16.                      UserViews.PARLIAMENT_RANKING_VIEW_NAME,PageMode.RULES, RiskIndicators.RISK_SUMMARY.toString());

  17.     /** The command rule violation. */
  18.     PageModeMenuCommand COMMAND_RULE_VIOLATION = new PageModeMenuCommand(
  19.                      UserViews.PARLIAMENT_RANKING_VIEW_NAME, PageMode.RULES,RiskIndicators.RULE_VIOLATIONS.toString());

  20.     /** The command document activity. */
  21.     PageModeMenuCommand COMMAND_DOCUMENT_ACTIVITY = new PageModeMenuCommand(
  22.                      UserViews.PARLIAMENT_RANKING_VIEW_NAME,
  23.                      PageMode.CHARTS, ChartIndicators.DOCUMENTACTIVITYBYTYPE.toString());

  24.     /** The command decision activity. */
  25.     PageModeMenuCommand COMMAND_DECISION_ACTIVITY = new PageModeMenuCommand(
  26.                      UserViews.PARLIAMENT_RANKING_VIEW_NAME,
  27.                      PageMode.CHARTS, ChartIndicators.DECISIONACTIVITYBYTYPE.toString());

  28.     /** The command charts decision flow. */
  29.     PageModeMenuCommand COMMAND_CHARTS_DECISION_FLOW = new PageModeMenuCommand(
  30.                      UserViews.PARLIAMENT_RANKING_VIEW_NAME, PageMode.CHARTS, ChartIndicators.DECISION_FLOW_CHART.toString());

  31.     /** The parliament ranking command pagevisit history. */
  32.     PageModeMenuCommand PARLIAMENT_RANKING_COMMAND_PAGEVISIT_HISTORY = new PageModeMenuCommand(
  33.                      UserViews.PARLIAMENT_RANKING_VIEW_NAME, PageMode.PAGEVISITHISTORY);

  34.     /** The command charts party winner. */
  35.     PageModeMenuCommand COMMAND_CHARTS_PARTY_WINNER = new PageModeMenuCommand(
  36.             UserViews.PARLIAMENT_RANKING_VIEW_NAME, PageMode.CHARTS, ChartIndicators.PARTYWINNER.toString());

  37.         /** The command charts party gender. */
  38.         PageModeMenuCommand COMMAND_CHARTS_PARTY_GENDER = new PageModeMenuCommand(
  39.             UserViews.PARLIAMENT_RANKING_VIEW_NAME, PageMode.CHARTS, ChartIndicators.PARTYGENDER.toString());

  40.         /** The command charts party age. */
  41.         PageModeMenuCommand COMMAND_CHARTS_PARTY_AGE = new PageModeMenuCommand(
  42.             UserViews.PARLIAMENT_RANKING_VIEW_NAME, PageMode.CHARTS, ChartIndicators.PARTYAGE.toString());

  43.         /** The command charts decision activity. */
  44.         PageModeMenuCommand COMMAND_CHARTS_DECISION_ACTIVITY = new PageModeMenuCommand(
  45.             UserViews.PARLIAMENT_RANKING_VIEW_NAME, PageMode.CHARTS, ChartIndicators.DECISIONACTIVITYBYTYPE.toString());


  46. }