Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for encara (3.62 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java

            return "{" + authResult.account().username() + "}";
        }
    
        /**
         * Gets the Entra ID user associated with this credential.
         * @return The Entra ID user instance.
         */
        public EntraIdUser getUser() {
            return new EntraIdUser(authResult);
        }
    
        /**
         * Entra ID user implementation providing user information and permissions.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        }
    
        // New configuration keys for Entra ID
        /** Configuration key for Entra ID state time-to-live. */
        protected static final String ENTRAID_STATE_TTL = "entraid.state.ttl";
    
        /** Configuration key for Entra ID authority URL. */
        protected static final String ENTRAID_AUTHORITY = "entraid.authority";
    
        /** Configuration key for Entra ID tenant ID. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/SsoManager.java

         */
        protected SsoAuthenticator getAuthenticator() {
            String ssoType = getSsoType();
            // Backward compatibility: map legacy "aad" (Azure AD) to "entraid" (Entra ID)
            if ("aad".equals(ssoType)) {
                ssoType = "entraid";
            }
            final String name = ssoType + "Authenticator";
            if (ComponentUtil.hasComponent(name)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default int getLtrWindowSize() {
            return getSystemPropertyAsInt(Constants.LTR_WINDOW_SIZE_PROPERTY, 100);
        }
    
        /**
         * Gets the permission fields for Entra ID authentication.
         * Uses new entraid.permission.fields key with fallback to legacy aad.permission.fields.
         * @return Array of permission field names.
         */
        default String[] getEntraIdPermissionFields() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_id.properties

    labels.requestFile=Berkas Permintaan
    labels.sereq_button_upload=Kirim
    labels.facet_is_not_found=Tidak ditemukan
    labels.doc_score=Skor:
    labels.development_mode_warning=Fess berjalan dalam mode pengembangan. Silakan instal OpenSearch secara terpisah di lingkungan produksi.
    labels.eol_error=Sistem yang Anda gunakan tidak lagi didukung. Silakan rujuk ke halaman siklus hidup dukungan produk dan lakukan upgrade.
    labels.tooltip_search_view=Layar Pencarian
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 45.2K bytes
    - Viewed (0)
Back to top