Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WebAuthentication (0.07 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.ParameterUtil;
    
    /**
     * @author FreeGen
     */
    public class WebAuthentication extends BsWebAuthentication {
    
        private static final long serialVersionUID = 1L;
    
        private static final Logger logger = LogManager.getLogger(WebAuthentication.class);
    
        private WebConfig webConfig;
    
        public Authentication getAuthentication() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 04:23:08 UTC 2025
    - 6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        /**
         * Retrieves or creates a WebAuthentication entity based on the form's CRUD mode.
         *
         * @param form the form containing the web authentication data
         * @param username the username of the current user
         * @param currentTime the current timestamp
         * @return an optional WebAuthentication entity
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java

            } else {
                paramMap.put(Client.USER_AGENT, userAgent);
            }
    
            final List<WebAuthentication> webAuthList = webAuthenticationService.getWebAuthenticationList(getId());
            final List<Authentication> basicAuthList = new ArrayList<>();
            for (final WebAuthentication webAuth : webAuthList) {
                basicAuthList.add(webAuth.getAuthentication());
            }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top