citizen-intelligence-agency/src/main/java/com/hack23/cia/web/impl/ui/application/action/ViewAction.java

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * Copyright 2010-2021 James Pether Sörling
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 *    $Id$
 *  $HeadURL$
*/
package com.hack23.cia.web.impl.ui.application.action;

/**
 * The Enum ViewAction.
 */
public enum ViewAction {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /** The visit login. */
    VISIT_LOGIN,

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

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

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

    VISIT_PARLIAMENT_RANKING_VIEW,

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

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

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

    /** The visit politician view. */
    VISIT_POLITICIAN_VIEW, VISIT_REGISTER,

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

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

    /** The visit dashboard view. */
    VISIT_DASHBOARD_VIEW;
}