UserViews.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.views.common.viewnames;
/**
* The Class UserViews.
*/
public final class UserViews {
/** The Constant BALLOT_VIEW_NAME. */
public static final String BALLOT_VIEW_NAME = "ballot";
/** The Constant COMMITTEE_RANKING_VIEW_NAME. */
public static final String COMMITTEE_RANKING_VIEW_NAME = "committeeranking";
/** The Constant COMMITTEE_VIEW_NAME. */
public static final String COMMITTEE_VIEW_NAME = "committee";
/** The Constant DOCUMENT_VIEW_NAME. */
public static final String DOCUMENT_VIEW_NAME = "document";
/** The Constant MINISTRY_RANKING_VIEW_NAME. */
public static final String MINISTRY_RANKING_VIEW_NAME = "ministryranking";
/** The Constant MINISTRY_VIEW_NAME. */
public static final String MINISTRY_VIEW_NAME = "ministry";
/** The Constant PARTY_RANKING_VIEW_NAME. */
public static final String PARTY_RANKING_VIEW_NAME = "partyranking";
/** The Constant PARTY_VIEW_NAME. */
public static final String PARTY_VIEW_NAME = "party";
/** The Constant POLITICIAN_RANKING_VIEW_NAME. */
public static final String POLITICIAN_RANKING_VIEW_NAME = "politicianranking";
/** The Constant POLITICIAN_VIEW_NAME. */
public static final String POLITICIAN_VIEW_NAME = "politician";
/** The Constant SEARCH_DOCUMENT_VIEW_NAME. */
public static final String SEARCH_DOCUMENT_VIEW_NAME = "search";
/** The Constant USERHOME_VIEW_NAME. */
public static final String USERHOME_VIEW_NAME = "userhome";
/** The Constant COUNTRY_RANKING_VIEW_NAME. */
public static final String COUNTRY_RANKING_VIEW_NAME = "countryranking";
/** The Constant PARLIAMENT_RANKING_VIEW_NAME. */
public static final String PARLIAMENT_RANKING_VIEW_NAME = "parliamentranking";
/**
* Instantiates a new user views.
*/
private UserViews() {
super();
}
}