- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getKickOffTime (0.25 sec)
-
src/test/java/jcifs/pac/PacLogonInfoTest.java
when(logonInfo.getServerName()).thenReturn(TEST_SERVER); when(logonInfo.getLogonTime()).thenReturn(new Date()); when(logonInfo.getLogoffTime()).thenReturn(new Date()); when(logonInfo.getKickOffTime()).thenReturn(new Date()); when(logonInfo.getPwdLastChangeTime()).thenReturn(new Date()); when(logonInfo.getPwdCanChangeTime()).thenReturn(new Date());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
return this.logoffTime; } /** * Returns the time when the user's session will be forcibly terminated. * @return the kick off timestamp */ public Date getKickOffTime() { return this.kickOffTime; } /** * Returns the time when the user's password was last changed. * @return the password last change timestamp */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0)