Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getBadPasswordCount (0.24 sec)

  1. src/test/java/jcifs/pac/PacLogonInfoTest.java

            when(logonInfo.getPwdCanChangeTime()).thenReturn(new Date());
            when(logonInfo.getPwdMustChangeTime()).thenReturn(new Date());
            when(logonInfo.getLogonCount()).thenReturn((short) 10);
            when(logonInfo.getBadPasswordCount()).thenReturn((short) 2);
            when(logonInfo.getUserDisplayName()).thenReturn("Display Name");
            when(logonInfo.getProfilePath()).thenReturn("\\\\server\\\\profile");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacLogonInfo.java

            return this.logonCount;
        }
    
        /**
         * Returns the number of failed password attempts for this user.
         * @return the bad password count
         */
        public short getBadPasswordCount() {
            return this.badPasswordCount;
        }
    
        /**
         * Returns the user's account name.
         * @return the user name
         */
        public String getUserName() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
Back to top