Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for passWord (0.06 sec)

  1. src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java

         */
        void delete(User user);
    
        /**
         * Changes the password for the specified user.
         * @param username The username for which to change the password.
         * @param password The new password.
         * @return True if the password was successfully changed, false otherwise.
         */
        boolean changePassword(String username, String password);
    
        /**
         * Loads user information from the authentication chain.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        #   o user: (Required)
        #   o password: password plainly or path to password file (with default password)
        #       e.g. foo or df:dfprop/system-password.txt|foo
        #       (NotRequired - Default '')
        #   o isSkipIfNotFoundPasswordFileAndDefault: Does it skip the user SQL statement
        #       when using password file but not found it and also default password?
        #       (NotRequired - Default false)
        #
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

            }
            return redirect(getClass());
        }
    
        /**
         * Handles password change for the current user.
         *
         * @param form the password form containing new password and confirmation
         * @return the HTML response after password change attempt
         */
        @Execute
        public HtmlResponse changePassword(final PasswordForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/login/LoginForm.java

        }
    
        /** The username. */
        @NotBlank
        public String username;
    
        /** The password. */
        @NotBlank
        public String password;
    
        /** The confirm password. */
        public String confirmPassword;
    
        /**
         * Clears the security info.
         */
        public void clearSecurityInfo() {
            password = null;
            confirmPassword = null;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

        }
    
        /**
         * Changes the password for a user across all authentication chains.
         * @param username The username for which to change the password.
         * @param password The new password.
         * @return True if the password was successfully changed in all chains, false otherwise.
         */
        public boolean changePassword(final String username, final String password) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/login/PasswordForm.java

    /**
     * Form for password change.
     */
    public class PasswordForm {
    
        /**
         * Default constructor.
         */
        public PasswordForm() {
            // Default constructor
        }
    
        /** The username. */
        public String username;
    
        /** The password. */
        @NotBlank
        public String password;
    
        /** The confirm password. */
        @NotBlank
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/login/LocalUserCredential.java

        /**
         * Creates a new LocalUserCredential with the specified user and password.
         *
         * @param user the username
         * @param password the password
         */
        public LocalUserCredential(final String user, final String password) {
            super(user, password);
        }
    
        @Override
        public String getUserId() {
            return getUser();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/profile/ProfileForm.java

         * Default constructor.
         */
        public ProfileForm() {
            // Default constructor
        }
    
        /** The old password. */
        @NotBlank
        public String oldPassword;
    
        /** The new password. */
        @NotBlank
        public String newPassword;
    
        /** The confirm new password. */
        @NotBlank
        public String confirmNewPassword;
    
        /**
         * Clears security information.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileAuthentication.java

            this.parameters = value;
        }
    
        public String getPassword() {
            checkSpecifiedProperty("password");
            return convertEmptyToNull(password);
        }
    
        public void setPassword(String value) {
            registerModifiedProperty("password");
            this.password = value;
        }
    
        public Integer getPort() {
            checkSpecifiedProperty("port");
            return port;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebAuthentication.java

            this.parameters = value;
        }
    
        public String getPassword() {
            checkSpecifiedProperty("password");
            return convertEmptyToNull(password);
        }
    
        public void setPassword(String value) {
            registerModifiedProperty("password");
            this.password = value;
        }
    
        public Integer getPort() {
            checkSpecifiedProperty("port");
            return port;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9K bytes
    - Viewed (0)
Back to top