View Javadoc
1   /*
2    * Copyright (c) 2002-2014, Mairie de Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.extend.modules.rating.util.constants;
35  
36  
37  /**
38   *
39   * CommentConstants
40   *
41   */
42  public final class RatingConstants
43  {
44      // PROPERTIES
45      public static final String PROPERTY_RATING_CONFIG_LABEL_NO_MAILING_LIST = "module.extend.rating.rating_config.labelNoMailingList";
46      public static final String PROPERTY_WEBMASTER_EMAIL = "email.webmaster";
47      public static final String PROPERTY_LUTECE_NAME = "lutece.name";
48      public static final String PROPERTY_MANAGE_VOTE_TYPES_PAGE_TITLE = "module.extend.rating.manage_vote_types.pageTitle";
49  
50      // MESSAGES
51      public static final String MESSAGE_NOTIFY_SUBJECT = "module.extend.rating.message.notify.subject";
52      public static final String MESSAGE_ERROR_GENERIC_MESSAGE = "module.extend.rating.message.error.genericMessage";
53      public static final String MESSAGE_STOP_GENERIC_MESSAGE = "module.extend.rating.message.stop.genericMessage";
54      public static final String MESSAGE_CANNOT_VOTE = "module.extend.rating.message.cannotVote";
55  
56      // PARAMETERS
57      public static final String PARAMETER_ID_EXTENDABLE_RESOURCE = "idExtendableResource";
58      public static final String PARAMETER_EXTENDABLE_RESOURCE_TYPE = "extendableResourceType";
59      public static final String PARAMETER_VOTE_VALUE = "ratingValue";
60      public static final String PARAMETER_RATING_TYPE = "ratingType";
61      public static final String PARAMETER_HTTP_REFERER = "referer";
62      public static final String PARAMETER_ID_VOTE_TYPE = "idVoteType";
63      public static final String PARAMETER_CANCEL = "cancel";
64  
65      // BEANS
66      public static final String BEAN_CONFIG_SERVICE = "extend-rating.ratingExtenderConfigService";
67  
68      // MARKS
69      public static final String MARK_RATING = "rating";
70      public static final String MARK_RATING_LIST = "ratingList";
71      public static final String MARK_ID_EXTENDABLE_RESOURCE = "idExtendableResource";
72      public static final String MARK_EXTENDABLE_RESOURCE_TYPE = "extendableResourceType";
73      public static final String MARK_RATING_CONFIG = "ratingConfig";
74      public static final String MARK_LIST_IDS_MAILING_LIST = "listIdsMailingList";
75      public static final String MARK_RESOURCE_EXTENDER_NAME = "resourceExtenderName";
76      public static final String MARK_VOTE_VALUE = "ratingValue";
77      public static final String MARK_LIST_IDS_VOTE_TYPE = "listIdsVoteType";
78      public static final String MARK_RATING_HTML_CONTENT = "ratingHtmlContent";
79      public static final String MARK_VOTE_TYPE = "voteType";
80      public static final String MARK_LIST_VOTE_TYPES = "listVoteTypes";
81      public static final String MARK_WEBAPP_URL = "webapp_url";
82      public static final String MARK_LOCALE = "locale";
83      public static final String MARK_SHOW = "show";
84      public static final String MARK_CAN_VOTE = "canVote";
85      public static final String MARK_CAN_DELETE_VOTE = "canDeleteVote";
86      public static final String MARK_VOTE_CLOSED = "voteClosed";
87  
88      // CONSTANTS
89      public static final String JSON_KEY_SHOW = "show";
90      public static final String SHOW_ALL = "all";
91      public static final String SHOW_VOTE = "vote";
92      public static final String SHOW_VOTE_ACTION = "voteAction";
93      public static final String PARAMETER_FROM_URL = "from_url";
94      
95      public static final String ORDER_BY_DATE_CREATION = " date_creation ";
96  
97  
98      // RATING TYPES
99      public static final String STAR_RATING = "extend_rating_vote_type_star";
100     public static final String THUMB_RATING = "extend_rating_vote_type_thumb";
101     public static final String SIMPLE_RATING = "extend_rating_vote_type_simple";
102     public static final String MAJORITY_RATING = "extend_rating_vote_type_majority";
103 
104     
105     /**
106      * Instantiates a new comment constants.
107      */
108     private RatingConstants(  )
109     {
110     }
111 }