Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPwdMustChangeTime (0.42 sec)

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

            when(logonInfo.getPwdLastChangeTime()).thenReturn(new Date());
            when(logonInfo.getPwdCanChangeTime()).thenReturn(new Date());
            when(logonInfo.getPwdMustChangeTime()).thenReturn(new Date());
            when(logonInfo.getLogonCount()).thenReturn((short) 10);
            when(logonInfo.getBadPasswordCount()).thenReturn((short) 2);
    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.pwdCanChangeTime;
        }
    
        /**
         * Returns the time when the user must change their password.
         * @return the password must change timestamp
         */
        public Date getPwdMustChangeTime() {
            return this.pwdMustChangeTime;
        }
    
        /**
         * Returns the number of successful logons for this user.
         * @return the logon count
         */
        public short getLogonCount() {
    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