PageCommandMinistryConstants.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.MinistryPageMode;
  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 PageCommandMinistryConstants.
  8.  */
  9. public interface PageCommandMinistryConstants {

  10.     /** The ministry command pagevisithistory. */
  11.     PageModeMenuCommand MINISTRY_COMMAND_PAGEVISITHISTORY = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME,
  12.             PageMode.PAGEVISITHISTORY);

  13.     /** The command ministry overview. */
  14.     PageModeMenuCommand COMMAND_MINISTRY_OVERVIEW = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, PageMode.OVERVIEW);

  15.     /** The command ministry current members. */
  16.     PageModeMenuCommand COMMAND_MINISTRY_CURRENT_MEMBERS = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, MinistryPageMode.CURRENTMEMBERS.toString());

  17.     /** The command ministry member history. */
  18.     PageModeMenuCommand COMMAND_MINISTRY_MEMBER_HISTORY = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, MinistryPageMode.MEMBERHISTORY.toString());

  19.     /** The command ministry role ghant. */
  20.     PageModeMenuCommand COMMAND_MINISTRY_ROLE_GHANT = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, MinistryPageMode.ROLEGHANT.toString());

  21.     /** The command ministry government bodies headcount. */
  22.     PageModeMenuCommand COMMAND_MINISTRY_GOVERNMENT_BODIES_HEADCOUNT = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, MinistryPageMode.GOVERNMENT_BODIES_HEADCOUNT.toString());

  23.     /** The command ministry government bodies income. */
  24.     PageModeMenuCommand COMMAND_MINISTRY_GOVERNMENT_BODIES_INCOME = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, MinistryPageMode.GOVERNMENT_BODIES_INCOME.toString());

  25.     /** The command ministry government bodies expenditure. */
  26.     PageModeMenuCommand COMMAND_MINISTRY_GOVERNMENT_BODIES_EXPENDITURE = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, MinistryPageMode.GOVERNMENT_BODIES_EXPENDITURE.toString());

  27.     /** The command ministry document activity. */
  28.     PageModeMenuCommand COMMAND_MINISTRY_DOCUMENT_ACTIVITY = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, MinistryPageMode.DOCUMENTACTIVITY.toString());

  29.     /** The command ministry document history. */
  30.     PageModeMenuCommand COMMAND_MINISTRY_DOCUMENT_HISTORY = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, MinistryPageMode.DOCUMENTHISTORY.toString());

  31.     /** The command ministry page visit history. */
  32.     PageModeMenuCommand COMMAND_MINISTRY_PAGEVISIT_HISTORY = new PageModeMenuCommand(UserViews.MINISTRY_VIEW_NAME, PageMode.PAGEVISITHISTORY.toString());

  33. }