View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.syncope.client.console.commons;
20  
21  public final class AMConstants {
22  
23      public static final String PREF_GATEWAYROUTE_PAGINATOR_ROWS = "gatewayroute.paginator.rows";
24  
25      public static final String PREF_WACONFIG_PAGINATOR_ROWS = "waconfig.paginator.rows";
26  
27      public static final String PREF_WASESSION_PAGINATOR_ROWS = "wasession.paginator.rows";
28  
29      public static final String PREF_AUTHMODULE_PAGINATOR_ROWS = "authmodule.paginator.rows";
30  
31      public static final String PREF_CLIENTAPP_PAGINATOR_ROWS = "clientapp.paginator.rows";
32  
33      public static final String PREF_CLIENTAPP_PROPERTIES_PAGINATOR_ROWS = "clientapp.properties.paginator.rows";
34  
35      public static final String PREF_ACCESS_POLICY_CONF_ATTRS_PAGINATOR_ROWS = "accesspolicy.conf.attrs.paginator.rows";
36  
37      public static final String PREF_SAML2_IDP_ENTITY_PAGINATOR_ROWS = "saml2idpentity.properties.paginator.rows";
38  
39      public static final String PREF_SAML2_SP_ENTITY_PAGINATOR_ROWS = "saml2spentity.properties.paginator.rows";
40  
41      public static final String PREF_AUTHPROFILE_PAGINATOR_ROWS = "authprofile.paginator.rows";
42  
43      public static final String PREF_AUTHPROFILE_IMPERSONATED_PAGINATOR_ROWS = "authprofile.impersonated.paginator.rows";
44  
45      public static final String PREF_AUTHPROFILE_GOOGLEMFAAUTHTOKENS_PAGINATOR_ROWS =
46              "authprofile.googlemfaauthtokens.paginator.rows";
47  
48      public static final String PREF_AUTHPROFILE_GOOGLEMFAAUTHACCOUNTS_PAGINATOR_ROWS =
49              "authprofile.googlemfaauthaccounts.paginator.rows";
50  
51      public static final String PREF_AUTHPROFILE_U2FDEVICES_PAGINATOR_ROWS =
52              "authprofile.u2fdevices.paginator.rows";
53  
54      public static final String PREF_AUTHPROFILE_MFA_TRUSTED_FDEVICES_PAGINATOR_ROWS =
55              "authprofile.mfaTrustedDevices.paginator.rows";
56  
57      public static final String PREF_AUTHPROFILE_WEBAUTHNDEVICECREDENTIALS_PAGINATOR_ROWS =
58              "authprofile.webAuthnDeviceCredentials.paginator.rows";
59  
60      private AMConstants() {
61          // private constructor for static utility class
62      }
63  }