View Javadoc
1   /*
2    * Copyright (c) 2002-2022, 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.pluginwizard.service.generator;
35  
36  /**
37   * Markers constants
38   */
39  public final class Markers
40  {
41      public static final String MARK_LIST_BUSINESS_CLASS = "list_business_class";
42      public static final String MARK_PLUGIN_APPLICATION = "plugin_application";
43      public static final String MARK_PLUGIN_MODEL = "plugin_model";
44      public static final String MARK_PLUGIN_NAME = "plugin_name";
45      public static final String MARK_FEATURE_NAME = "feature_name";
46      public static final String MARK_APPLICATION_NAME = "application_name";
47      public static final String MARK_APPLICATION_CLASS = "application_class";
48      public static final String MARK_FEATURE_RIGHT = "feature_right";
49      public static final String MARK_BUSINESS_CLASS = "business_class";
50      public static final String MARK_BUSINESS_CLASSES = "business_classes";
51      public static final String MARK_JSP_TYPE = "jsp_type";
52      public static final String MARK_PORTLET_TEMPLATE_TYPE = "template_type";
53      public static final String MARK_PORTLET_JSP_TYPE = "portlet_jsp_type";
54      public static final String MARK_PORTLET = "portlet";
55      public static final String MARK_PORTLET_FILE_TYPE = "portlet_file_type";
56      public static final String MARK_TEMPLATE_TYPE = "template_type";
57      public static final String MARK_SQL_TYPE = "sql_type";
58      public static final String MARK_LANGUAGE = "language";
59      public static final String MARK_I18N_BRACKETS_OPEN = "i18n_open";
60      public static final String MARK_I18N_BRACKETS_CLOSE = "i18n_close";
61      public static final String MARK_VARIABLE = "variable";
62      public static final String MARK_BRACKETS_OPEN = "bra_open";
63      public static final String MARK_BRACKETS_CLOSE = "bra_close";
64      public static final String MARK_MACRO = "macro";
65      public static final String MARK_MACRO_DEF = "macro_def";
66      public static final String MARK_INCLUDE = "include";
67      public static final String MARK_PLUGIN = "plugin";
68      public static final String MARK_FEATURE = "feature";
69      public static final String MARK_LIST_BUSINESS_CLASSES = "business_classes";
70      public static final String MARK_ADMIN_FEATURE = "admin_feature";
71      public static final String MARK_APPLICATION = "application";
72      public static final String MARK_RESOURCE_KEY_LIST = "list_resource";
73      public static final String MARK_LIST_FEATURES = "features";
74      public static final String MARK_LIST_APPLICATIONS = "applications";
75      public static final String MARK_LIST_PORTLETS = "portlets";
76      public static final String MARK_BEAN_NAME = "bean_name";
77      public static final String MARK_PLUGIN_PATH = "pluginPath";
78      public static final String MARK_IS_MODULE = "is_Module";
79      public static final String MARK_RADICAL_PACKAGE = "radical_package";
80      public static final String MARK_CORE_VERSION = "core_version";
81      public static final String MARK_GLOBAL_POM_VERSION = "pom_parent_version";
82      public static final String MARK_DEPENDECY_REST_VERSION = "dependecy_rest_version";
83      public static final String MARK_POM_MODEL_VERSION = "pom_model_version";
84  
85      /** Private constructor */
86      private Markers( )
87      {
88      }
89  }