Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLogonTime (0.05 sec)

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

            when(logonInfo.getUserName()).thenReturn(TEST_USERNAME);
            when(logonInfo.getDomainName()).thenReturn(TEST_DOMAIN);
            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());
    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

                throw new PACDecodingException("Malformed PAC", e);
            }
        }
    
        /**
         * Returns the user's logon time.
         * @return the logon timestamp
         */
        public Date getLogonTime() {
            return this.logonTime;
        }
    
        /**
         * Returns the user's logoff time.
         * @return the logoff timestamp
         */
        public Date getLogoffTime() {
    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