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.views.common.viewnames;
20
21 /**
22 * The Class UserViews.
23 */
24 public final class UserViews {
25
26 /** The Constant BALLOT_VIEW_NAME. */
27 public static final String BALLOT_VIEW_NAME = "ballot";
28
29 /** The Constant COMMITTEE_RANKING_VIEW_NAME. */
30 public static final String COMMITTEE_RANKING_VIEW_NAME = "committeeranking";
31
32 /** The Constant COMMITTEE_VIEW_NAME. */
33 public static final String COMMITTEE_VIEW_NAME = "committee";
34
35 /** The Constant DOCUMENT_VIEW_NAME. */
36 public static final String DOCUMENT_VIEW_NAME = "document";
37
38 /** The Constant MINISTRY_RANKING_VIEW_NAME. */
39 public static final String MINISTRY_RANKING_VIEW_NAME = "ministryranking";
40
41 /** The Constant MINISTRY_VIEW_NAME. */
42 public static final String MINISTRY_VIEW_NAME = "ministry";
43
44 /** The Constant PARTY_RANKING_VIEW_NAME. */
45 public static final String PARTY_RANKING_VIEW_NAME = "partyranking";
46
47 /** The Constant PARTY_VIEW_NAME. */
48 public static final String PARTY_VIEW_NAME = "party";
49
50 /** The Constant POLITICIAN_RANKING_VIEW_NAME. */
51 public static final String POLITICIAN_RANKING_VIEW_NAME = "politicianranking";
52
53 /** The Constant POLITICIAN_VIEW_NAME. */
54 public static final String POLITICIAN_VIEW_NAME = "politician";
55
56
57 /** The Constant SEARCH_DOCUMENT_VIEW_NAME. */
58 public static final String SEARCH_DOCUMENT_VIEW_NAME = "search";
59
60 /** The Constant USERHOME_VIEW_NAME. */
61 public static final String USERHOME_VIEW_NAME = "userhome";
62
63 /** The Constant COUNTRY_RANKING_VIEW_NAME. */
64 public static final String COUNTRY_RANKING_VIEW_NAME = "countryranking";
65
66 /** The Constant PARLIAMENT_RANKING_VIEW_NAME. */
67 public static final String PARLIAMENT_RANKING_VIEW_NAME = "parliamentranking";
68
69 /**
70 * Instantiates a new user views.
71 */
72 private UserViews() {
73 super();
74 }
75
76
77 }