ViewAction.java

  1. /*
  2.  * Copyright 2010-2025 James Pether Sörling
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  *   http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  *
  16.  *  $Id$
  17.  *  $HeadURL$
  18. */
  19. package com.hack23.cia.web.impl.ui.application.action;

  20. /**
  21.  * The Enum ViewAction.
  22.  */
  23. public enum ViewAction {

  24.     /** The start agent button. */
  25.     START_AGENT_BUTTON,

  26.     /** The visit admin agency view. */
  27.     VISIT_ADMIN_AGENCY_VIEW,

  28.     /** The visit admin agent operation view. */
  29.     VISIT_ADMIN_AGENT_OPERATION_VIEW,

  30.     /** The visit admin application configuration view. */
  31.     VISIT_ADMIN_APPLICATION_CONFIGURATION_VIEW,

  32.     /** The visit admin application events view. */
  33.     VISIT_ADMIN_APPLICATION_EVENTS_VIEW,

  34.     /** The visit admin application session view. */
  35.     VISIT_ADMIN_APPLICATION_SESSION_VIEW,

  36.     /** The visit admin country view. */
  37.     VISIT_ADMIN_COUNTRY_VIEW,

  38.     /** The visit admin data summary view. */
  39.     VISIT_ADMIN_DATA_SUMMARY_VIEW,

  40.     /** The visit admin email view. */
  41.     VISIT_ADMIN_EMAIL_VIEW,

  42.     /** The visit admin language content view. */
  43.     VISIT_ADMIN_LANGUAGE_CONTENT_VIEW,

  44.     /** The visit admin language view. */
  45.     VISIT_ADMIN_LANGUAGE_VIEW,

  46.     /** The visit admin monitoring view. */
  47.     VISIT_ADMIN_MONITORING_VIEW,

  48.     /** The visit admin portal view. */
  49.     VISIT_ADMIN_PORTAL_VIEW,

  50.     /** The visit admin useraccount view. */
  51.     VISIT_ADMIN_USERACCOUNT_VIEW,

  52.     /** The visit ballot view. */
  53.     VISIT_BALLOT_VIEW,

  54.     /** The visit committee ranking view. */
  55.     VISIT_COMMITTEE_RANKING_VIEW,

  56.     /** The visit committee view. */
  57.     VISIT_COMMITTEE_VIEW,

  58.     /** The visit country view. */
  59.     VISIT_COUNTRY_VIEW,

  60.     /** The visit document view. */
  61.     VISIT_DOCUMENT_VIEW,

  62.     /** The visit documents view. */
  63.     VISIT_DOCUMENTS_VIEW,

  64.     /** The visit government body ranking view. */
  65.     VISIT_GOVERNMENT_BODY_RANKING_VIEW,

  66.     /** The visit government body view. */
  67.     VISIT_GOVERNMENT_BODY_VIEW,

  68.     /** The visit login. */
  69.     VISIT_LOGIN,

  70.     /** The visit main view. */
  71.     VISIT_MAIN_VIEW,

  72.     /** The visit ministry ranking view. */
  73.     VISIT_MINISTRY_RANKING_VIEW,

  74.     /** The visit ministry view. */
  75.     VISIT_MINISTRY_VIEW,

  76.     /** The visit parliament ranking view. */
  77.     VISIT_PARLIAMENT_RANKING_VIEW,

  78.     /** The visit party ranking view. */
  79.     VISIT_PARTY_RANKING_VIEW,

  80.     /** The visit party view. */
  81.     VISIT_PARTY_VIEW,

  82.     /** The visit politician ranking view. */
  83.     VISIT_POLITICIAN_RANKING_VIEW,

  84.     /** The visit politician view. */
  85.     VISIT_POLITICIAN_VIEW,

  86.     /** The visit register. */
  87.     VISIT_REGISTER,

  88.     /** The visit search view. */
  89.     VISIT_SEARCH_VIEW,

  90.     /** The visit user home view. */
  91.     VISIT_USER_HOME_VIEW,

  92.     /** The visit dashboard view. */
  93.     VISIT_DASHBOARD_VIEW;
  94. }