Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. samples/guide/src/main/java/okhttp3/recipes/PreemptiveAuth.java

        private final String credentials;
        private final String host;
    
        BasicAuthInterceptor(String host, String username, String password) {
          this.credentials = Credentials.basic(username, password);
          this.host = host;
        }
    
        @Override public Response intercept(Chain chain) throws IOException {
          Request request = chain.request();
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Nov 05 07:46:46 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/kt/Authenticate.kt

                }
    
                println("Authenticating for response: $response")
                println("Challenges: ${response.challenges()}")
                val credential = Credentials.basic("jesse", "password1")
                return response.request
                  .newBuilder()
                  .header("Authorization", credential)
                  .build()
              }
            },
          ).build()
    
      fun run() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/Authenticate.java

              }
    
              System.out.println("Authenticating for response: " + response);
              System.out.println("Challenges: " + response.challenges());
              String credential = Credentials.basic("jesse", "password1");
              return response.request().newBuilder()
                  .header("Authorization", credential)
                  .build();
            })
            .build();
      }
    
      public void run() throws Exception {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 12 07:26:27 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

            assertTrue(testLdapManager.changePasswordCalled);
        }
    
        public void test_changePassword_withNullPassword() {
            // Test password change with null password
            testLdapManager.changePasswordResult = false;
            testFessConfig.ldapAdminSyncPassword = false;
    
            boolean result = ldapChain.changePassword("testuser", null);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top