Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 269 for gats (0.01 sec)

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

            return authResult.account().username();
        }
    
        @Override
        public String toString() {
            return "{" + authResult.account().username() + "}";
        }
    
        /**
         * Gets the Azure AD user associated with this credential.
         * @return The Azure AD user instance.
         */
        public AzureAdUser getUser() {
            return new AzureAdUser(authResult);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                this(name, version, null);
            }
    
            /**
             * Gets the name of the artifact.
             *
             * @return the artifact name
             */
            public String getName() {
                return name;
            }
    
            /**
             * Gets the version of the artifact.
             *
             * @return the artifact version
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/validation/CustomSize.java

         * @return the payload
         */
        Class<? extends Payload>[] payload() default {};
    
        /**
         * Gets the configuration key for the minimum size constraint.
         * @return name of size the element must be higher or equal to
         */
        String minKey() default StringUtil.EMPTY;
    
        /**
         * Gets the configuration key for the maximum size constraint.
         *
         * @return name of size the element must be lower or equal to
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            }
    
            /**
             * Gets the filter name for this SPNEGO configuration.
             *
             * @return The fully qualified class name of SpnegoAuthenticator
             */
            @Override
            public String getFilterName() {
                return SpnegoAuthenticator.class.getName();
            }
    
            /**
             * Gets the servlet context. This operation is not supported.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** Configuration for Fess */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a paginated list of protected words items.
         * @param dictId the dictionary ID
         * @param protwordsPager the pager for pagination
         * @return the list of protected words items
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/login/FessCredential.java

    package org.codelibs.fess.app.web.base.login;
    
    /**
     * Interface for Fess credential management.
     * Provides access to user identification information.
     */
    public interface FessCredential {
    
        /**
         * Gets the user ID for this credential.
         * @return The user ID.
         */
        String getUserId();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 927 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/WebApiRequest.java

         */
        public WebApiRequest(final HttpServletRequest request, final String servletPath) {
            super(request);
            this.servletPath = servletPath;
        }
    
        /**
         * Gets the servlet path for this request.
         * Returns the custom servlet path unless the query string contains SAStruts.method.
         *
         * @return The servlet path
         */
        @Override
        public String getServletPath() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

         *
         * @param username The username obtained from SPNEGO authentication
         */
        public SpnegoCredential(final String username) {
            this.username = username;
        }
    
        /**
         * Gets the user identifier from this credential.
         *
         * @return The username from SPNEGO authentication
         */
        @Override
        public String getUserId() {
            return username;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

            });
        }
    
        /**
         * Gets a web configuration by its ID.
         *
         * @param id The ID of the web configuration
         * @return Optional containing the web configuration if found
         */
        public OptionalEntity<WebConfig> getWebConfig(final String id) {
            return webConfigBhv.selectByPK(id);
        }
    
        /**
         * Gets a web configuration by its name.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

        /**
         * Gets the login credential for SSO authentication.
         * @return The login credential.
         */
        LoginCredential getLoginCredential();
    
        /**
         * Resolves credential using the provided resolver.
         * @param resolver The login credential resolver.
         */
        void resolveCredential(LoginCredentialResolver resolver);
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top