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

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

  10.     /** The command party overview. */
  11.     PageModeMenuCommand COMMAND_PARTY_OVERVIEW = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PageMode.OVERVIEW);

  12.     /** The command party current leaders. */
  13.     PageModeMenuCommand COMMAND_PARTY_CURRENT_LEADERS = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.CURRENTLEADERS.toString());

  14.     /** The command party leader history. */
  15.     PageModeMenuCommand COMMAND_PARTY_LEADER_HISTORY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.LEADERHISTORY.toString());

  16.     /** The command party current members. */
  17.     PageModeMenuCommand COMMAND_PARTY_CURRENT_MEMBERS = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.CURRENTMEMBERS.toString());

  18.     /** The command party member history. */
  19.     PageModeMenuCommand COMMAND_PARTY_MEMBER_HISTORY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.MEMBERHISTORY.toString());

  20.     /** The command party government roles. */
  21.     PageModeMenuCommand COMMAND_PARTY_GOVERNMENT_ROLES = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.GOVERNMENTROLES.toString());

  22.     /** The command party committee roles. */
  23.     PageModeMenuCommand COMMAND_PARTY_COMMITTEE_ROLES = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.COMMITTEEROLES.toString());

  24.     /** The command party role ghant. */
  25.     PageModeMenuCommand COMMAND_PARTY_ROLE_GHANT = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.ROLEGHANT.toString());

  26.     /** The command party document activity. */
  27.     PageModeMenuCommand COMMAND_PARTY_DOCUMENT_ACTIVITY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.DOCUMENTACTIVITY.toString());

  28.     /** The command party document history. */
  29.     PageModeMenuCommand COMMAND_PARTY_DOCUMENT_HISTORY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.DOCUMENTHISTORY.toString());

  30.     /** The command party vote history. */
  31.     PageModeMenuCommand COMMAND_PARTY_VOTE_HISTORY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.VOTEHISTORY.toString());

  32.     /** The command party ballot decision summary. */
  33.     PageModeMenuCommand COMMAND_PARTY_BALLOT_DECISION_SUMMARY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.COMMITTEEBALLOTDECISIONSUMMARY.toString());

  34.     /** The command party won daily summary chart. */
  35.     PageModeMenuCommand COMMAND_PARTY_WON_DAILY_SUMMARY_CHART = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.PARTYWONDAILYSUMMARYCHART.toString());

  36.     /** The command party against coalitions summary. */
  37.     PageModeMenuCommand COMMAND_PARTY_AGAINST_COALITIONS_SUMMARY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.PARTYAGAINSTCOALATIONSSUMMARY.toString());

  38.     /** The command party support summary. */
  39.     PageModeMenuCommand COMMAND_PARTY_SUPPORT_SUMMARY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PartyPageMode.PARTYSUPPORTSUMMARY.toString());

  40.     /** The command party page visit history. */
  41.     PageModeMenuCommand COMMAND_PARTY_PAGE_VISIT_HISTORY = new PageModeMenuCommand(UserViews.PARTY_VIEW_NAME, PageMode.PAGEVISITHISTORY);

  42. }