1 /* 2 * Copyright 2014 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 /** 22 * The Enum ViewAction. 23 */ 24 public enum ViewAction { 25 26 /** The visit admin agent operation view. */ 27 VISIT_ADMIN_AGENT_OPERATION_VIEW, 28 29 /** The visit admin data summary view. */ 30 VISIT_ADMIN_DATA_SUMMARY_VIEW, 31 32 /** The visit admin agency view. */ 33 VISIT_ADMIN_AGENCY_VIEW, 34 35 /** The visit ballot view. */ 36 VISIT_BALLOT_VIEW, 37 38 /** The visit test chart view. */ 39 VISIT_TEST_CHART_VIEW, 40 41 /** The visit main view. */ 42 VISIT_MAIN_VIEW, 43 44 /** The start agent button. */ 45 START_AGENT_BUTTON, 46 47 /** The visit politician view. */ 48 VISIT_POLITICIAN_VIEW, 49 50 /** The visit politician ranking view. */ 51 VISIT_POLITICIAN_RANKING_VIEW, 52 53 /** The visit party view. */ 54 VISIT_PARTY_VIEW, 55 56 /** The visit party ranking view. */ 57 VISIT_PARTY_RANKING_VIEW, 58 59 /** The visit committee ranking view. */ 60 VISIT_COMMITTEE_RANKING_VIEW, 61 62 /** The visit committee view. */ 63 VISIT_COMMITTEE_VIEW, 64 65 /** The visit ministry ranking view. */ 66 VISIT_MINISTRY_RANKING_VIEW, 67 68 /** The visit ministry view. */ 69 VISIT_MINISTRY_VIEW, 70 71 /** The visit admin application events view. */ 72 VISIT_ADMIN_APPLICATION_EVENTS_VIEW, 73 74 /** The visit admin application session view. */ 75 VISIT_ADMIN_APPLICATION_SESSION_VIEW, 76 77 /** The visit admin country view. */ 78 VISIT_ADMIN_COUNTRY_VIEW, 79 80 /** The visit admin language content view. */ 81 VISIT_ADMIN_LANGUAGE_CONTENT_VIEW, 82 83 /** The visit admin language view. */ 84 VISIT_ADMIN_LANGUAGE_VIEW, 85 86 /** The visit admin portal view. */ 87 VISIT_ADMIN_PORTAL_VIEW, 88 89 /** The visit admin useraccount view. */ 90 VISIT_ADMIN_USERACCOUNT_VIEW, 91 92 /** The visit document view. */ 93 VISIT_DOCUMENT_VIEW, 94 95 /** The visit search view. */ 96 VISIT_SEARCH_VIEW, 97 98 /** The visit admin monitoring view. */ 99 VISIT_ADMIN_MONITORING_VIEW, 100 101 /** The visit user home view. */ 102 VISIT_USER_HOME_VIEW, 103 104 /** The visit admin application configuration view. */ 105 VISIT_ADMIN_APPLICATION_CONFIGURATION_VIEW, VISIT_REGISTER, VISIT_LOGIN, 106 107 /** The visit admin email view. */ 108 VISIT_ADMIN_EMAIL_VIEW; 109 }