ViewAction.java

/*
 * Copyright 2014 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 visit admin agent operation view. */
	VISIT_ADMIN_AGENT_OPERATION_VIEW,

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

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

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

	/** The visit test chart view. */
	VISIT_TEST_CHART_VIEW,

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

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

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

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

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

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

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

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

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

	/** The visit ministry view. */
	VISIT_MINISTRY_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 language content view. */
	VISIT_ADMIN_LANGUAGE_CONTENT_VIEW,

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

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

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

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

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

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

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

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

	/** The visit admin email view. */
	VISIT_ADMIN_EMAIL_VIEW;
}