PageCommandCommitteeConstants.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.CommitteePageMode;
  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 PageCommandCommitteeConstants.
  9.  */
  10. public interface PageCommandCommitteeConstants {

  11.     /** The command committee overview. */
  12.     PageModeMenuCommand COMMAND_COMMITTEE_OVERVIEW = new PageModeMenuCommand(
  13.                      UserViews.COMMITTEE_VIEW_NAME, PageMode.OVERVIEW);

  14.     /** The command committee role ghant. */
  15.     PageModeMenuCommand COMMAND_COMMITTEE_ROLE_GHANT = new PageModeMenuCommand(
  16.                      UserViews.COMMITTEE_VIEW_NAME, CommitteePageMode.ROLEGHANT.toString());

  17.     /** The command committee pagevisit history. */
  18.     PageModeMenuCommand COMMAND_COMMITTEE_PAGEVISIT_HISTORY = new PageModeMenuCommand(
  19.                      UserViews.COMMITTEE_VIEW_NAME, PageMode.PAGEVISITHISTORY);

  20.     /** The command charts decision flow. */
  21.     PageModeMenuCommand COMMAND_CHARTS_DECISION_FLOW = new PageModeMenuCommand(
  22.             UserViews.COMMITTEE_VIEW_NAME, PageMode.CHARTS,
  23.             ChartIndicators.DECISION_FLOW_CHART.toString());

  24.     /** The command committee current members. */
  25.     PageModeMenuCommand COMMAND_COMMITTEE_CURRENT_MEMBERS = new PageModeMenuCommand(
  26.             UserViews.COMMITTEE_VIEW_NAME, CommitteePageMode.CURRENT_MEMBERS.toString());

  27.     /** The command committee member history. */
  28.     PageModeMenuCommand COMMAND_COMMITTEE_MEMBER_HISTORY = new PageModeMenuCommand(
  29.             UserViews.COMMITTEE_VIEW_NAME, CommitteePageMode.MEMBERHISTORY.toString());

  30.     /** The command committee document activity. */
  31.     PageModeMenuCommand COMMAND_COMMITTEE_DOCUMENT_ACTIVITY = new PageModeMenuCommand(
  32.             UserViews.COMMITTEE_VIEW_NAME, CommitteePageMode.DOCUMENTACTIVITY.toString());

  33.     /** The command committee document history. */
  34.     PageModeMenuCommand COMMAND_COMMITTEE_DOCUMENT_HISTORY = new PageModeMenuCommand(
  35.             UserViews.COMMITTEE_VIEW_NAME, CommitteePageMode.DOCUMENT_HISTORY.toString());

  36.     /** The command committee ballot decision summary. */
  37.     PageModeMenuCommand COMMAND_COMMITTEE_BALLOT_DECISION_SUMMARY = new PageModeMenuCommand(
  38.             UserViews.COMMITTEE_VIEW_NAME, CommitteePageMode.BALLOTDECISIONSUMMARY.toString());

  39.     /** The command committee decision summary. */
  40.     PageModeMenuCommand COMMAND_COMMITTEE_DECISION_SUMMARY = new PageModeMenuCommand(
  41.             UserViews.COMMITTEE_VIEW_NAME, CommitteePageMode.DECISIONSUMMARY.toString());

  42.     /** The command committee decision type daily summary. */
  43.     PageModeMenuCommand COMMAND_COMMITTEE_DECISION_TYPE_DAILY_SUMMARY = new PageModeMenuCommand(
  44.             UserViews.COMMITTEE_VIEW_NAME, CommitteePageMode.DECISIONTYPEDAILYSUMMARY.toString());
  45. }