View Javadoc
1   /*
2    * Copyright (c) 2002-2024, 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.identitystore.v2.web.rs.dto;
35  
36  /**
37   * This class provides constants for formatting
38   *
39   */
40  public final class DtoFormatConstants
41  {
42      public static final String KEY_AUTHOR = "author";
43      public static final String KEY_AUTHOR_ID = "id";
44      public static final String KEY_AUTHOR_TYPE = "type";
45      public static final String KEY_AUTHOR_APPLICATION_CODE = "application_code";
46      public static final String KEY_APPLICATION_RIGHTS = "application_rights";
47      public static final String KEY_APPLICATION_CODE = "application_code";
48      public static final String KEY_CERTIFICATE = "certificate";
49      public static final String KEY_CERTIFICATE_CERTIFIER_CODE = "certifier_code";
50      public static final String KEY_CERTIFICATE_CERTIFIER_NAME = "certifier_name";
51      public static final String KEY_CERTIFICATE_LEVEL = "certificate_level";
52      public static final String KEY_CERTIFICATE_EXPIRATION_DATE = "certificate_exp_date";
53      public static final String KEY_CERTIFICATE_CERTIFICATION_DATE = "certificate_date";
54      public static final String KEY_IDENTITY = "identity";
55      public static final String KEY_ATTRIBUTES = "attributes";
56      public static final String KEY_ATTRIBUTE = "attribute";
57      public static final String KEY_ATTRIBUTE_KEY = "key";
58      public static final String KEY_ATTRIBUTE_VALUE = "value";
59      public static final String KEY_ATTRIBUTE_TYPE = "type";
60      public static final String KEY_ATTRIBUTE_WRITABLE = "writable";
61      public static final String KEY_ATTRIBUTE_READABLE = "readable";
62      public static final String KEY_ATTRIBUTE_MANDATORY = "mandatory";
63      public static final String KEY_ATTRIBUTE_CERTIFIERS = "certifiers";
64      public static final String KEY_ATTRIBUTE_CERTIFIED = "certified";
65      public static final String KEY_ATTRIBUTE_CERTIFICATE = "certificate";
66      public static final String KEY_ATTRIBUTE_LASTUPDATE_APPCODE = "application_last_update";
67      public static final String KEY_ATTRIBUTE_LASTUPDATE_DATE = "date_last_update";
68      public static final String KEY_ATTRIBUTE_RIGHTS = "attribut_rights";
69      public static final String KEY_IDENTITY_CHANGE = "identity_change";
70      public static final String KEY_IDENTITY_CHANGE_IDENTITY = "identity";
71      public static final String KEY_IDENTITY_CHANGE_AUTHOR = "author";
72      public static final String KEY_ATTRIBUTE_STATUS = "status";
73      public static final String KEY_ATTRIBUTE_STATUS_CODE = "code";
74      public static final String KEY_ATTRIBUTE_STATUS_NEW_VALUE = "new_value";
75      public static final String KEY_ATTRIBUTE_STATUS_NEW_CERTIFIER = "new_certifier";
76      public static final String KEY_ATTRIBUTE_STATUS_DELETE_CERTIFIER = "delete_certifier";
77      public static final String KEY_ATTRIBUTE_STATUS_NEW_CERTIFICATE_EXP_DATE = "new_certificate_expiration_date";
78      public static final String KEY_CONNECTION_ID = "connection_id";
79      public static final String KEY_CUSTOMER_ID = "customer_id";
80      public static final String KEY_ID = "id";
81      public static final String KEY_LABEL = "label";
82      public static final String KEY_ERRORS = "errors";
83      public static final String KEY_ERROR = "error";
84      public static final String KEY_STATUS = "status";
85      public static final String KEY_MESSAGE = "message";
86      public static final String KEY_RESPONSE = "response";
87      public static final String KEY_ATTRIBUTE_VALUES = "attribute_values";
88      public static final String KEY_ATTRIBUTE_KEY_NAMES = "attribute_key_names";
89  
90      /**
91       * Private constructor
92       */
93      private DtoFormatConstants( )
94      {
95      }
96  }