View Javadoc
1   /*
2    * Copyright (c) 2002-2023, City of 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.appointment.modules.rest.util.contsants;
35  
36  import java.time.format.DateTimeFormatter;
37  
38  public class AppointmentRestConstants
39  {
40      /** The Constant SLASH. */
41      public static final String SLASH = "/";
42  
43      /** The Constant PATH_API. */
44      public static final String PATH_API = "api";
45  
46      /** The Constant PATH_AVAILABLE_SLOTS. */
47      public static final String PATH_AVAILABLE_SLOTS = "availableTimeSlots";
48      public static final String PATH_MANAGED_MEETING_POINTS = "getManagedMeetingPoints";
49  
50      public static final String XPAGE_APPOINTMENT_ANTS = "page=appointmentants";
51      public static final String PARAMETER_VIEW = "view";
52      public static final String VIEW_APPOINTMENT_ANTS = "predemandeForm";
53      public static final String PARAMETER_ID_FORM = "id_form";
54      public static final String PARAMETER_STARTING_DATE = "starting_date_time";
55      public static final String PARAMETER_NB_PLACES_TO_TAKE = "nbPlacesToTake";
56  
57      public static final String JSON_TAG_MEETING_POINT_IDS = "meeting_point_ids";
58      public static final String JSON_TAG_START_DATE = "start_date";
59      public static final String JSON_TAG_END_DATE = "end_date";
60      public static final String JSON_TAG_REASON = "reason";
61      public static final String JSON_TAG_DOCUMENTS_NUMBER = "documents_number";
62  
63      public static final String SOLR_QUERY_SELECT = "/select";
64      public static final String SOLR_QUERY_Q = "?q=";
65      public static final String SOLR_QUERY_Q_VALUE = "*:*";
66      public static final String SOLR_QUERY_FIELD = "&fl=";
67      public static final String SOLR_QUERY_FILTER_QUERY = "&fq=";
68      public static final String SOLR_QUERY_FILTER_ROWS = "&rows=";
69      public static final String SOLR_QUERY_GROUP = "&group=true";
70      public static final String SOLR_QUERY_GROUP_FIELD = "&group.field=";
71      public static final String SOLR_QUERY_COMMA = ",";
72      public static final String SOLR_QUERY_COLON = ":";
73      public static final String SOLR_QUERY_TO = " TO ";
74      public static final String SOLR_QUERY_LB = "[";
75      public static final String SOLR_QUERY_RB = "]";
76      public static final String SOLR_QUERY_RP = ")";
77      public static final String SOLR_QUERY_LP = "(";
78      public static final String SOLR_QUERY_STAR = "*";
79      public static final String SOLR_QUERY_TRUE = "true";
80      public static final String SOLR_QUERY_NOW = "NOW";
81  
82      public static final DateTimeFormatter SEARCH_DATE_FORMATTER = DateTimeFormatter.ofPattern( "yyyy-MM-dd" );
83      public static final DateTimeFormatter SOLR_DATE_FORMATTER = DateTimeFormatter.ofPattern( "yyyy-MM-dd'T'HH:mm:ss.SS'Z'" );
84      public static final DateTimeFormatter SOLR_RESPONSE_DATE_FORMATTER = DateTimeFormatter.ofPattern( "yyyy-MM-dd'T'HH:mm" );
85  
86      private AppointmentRestConstants()
87      {
88      }
89  }