Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for initialize (0.07 sec)

  1. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        /** Maximum depth for processing nested groups to prevent infinite loops. */
        protected int maxGroupDepth = 10;
    
        /** Use V2 endpoint. */
        protected boolean useV2Endpoint = true;
    
        /**
         * Initializes the Entra ID authenticator.
         * Registers this authenticator with the SSO manager and sets up group cache.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

         * The property key for the SAML SP base URL.
         */
        protected static final String SAML_SP_BASE_URL = "saml.sp.base.url";
    
        private Map<String, Object> defaultSettings;
    
        /**
         * Initializes the SamlAuthenticator.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initializing {}", this.getClass().getSimpleName());
            }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  3. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        /** JSON factory for OpenID Connect response parsing. */
        protected final JsonFactory jsonFactory = GsonFactory.getDefaultInstance();
    
        /**
         * Initializes the OpenID Connect authenticator.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initializing {}", this.getClass().getSimpleName());
            }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        /** A set of names of threads that are currently waiting. */
        protected Set<String> waitingThreadNames = Collections.synchronizedSet(new HashSet<>());
    
        /**
         * Initializes the SystemHelper.
         * This method sets up system properties, caches, and other initial configurations.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top