- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for Kerb5Authenticator (0.2 seconds)
-
src/main/java/jcifs/smb/Kerb5Authenticator.java
throw new SmbUnsupportedOperationException("Refreshing credentials is not supported by this authenticator"); } @Override public Kerb5Authenticator clone() { Kerb5Authenticator auth = new Kerb5Authenticator(getSubject()); cloneInternal(auth, this); return auth; } /** * Clone the context * * @param to the target authenticator
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 13.2K bytes - Click Count (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
// Mixed null/non-null -> not equal Kerb5Authenticator c = new Kerb5Authenticator(new Subject()); assertNotEquals(a, c); // Same subject instance -> equal Subject shared = new Subject(); Kerb5Authenticator d1 = new Kerb5Authenticator(shared); Kerb5Authenticator d2 = new Kerb5Authenticator(shared); assertEquals(d1, d2);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.9K bytes - Click Count (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
Kerb5Authenticator.cloneInternal(to, from); to.serviceName = from.serviceName; to.configuration = from.configuration; to.cachedSubject = from.cachedSubject; } /** * {@inheritDoc} * * @see jcifs.smb.Kerb5Authenticator#refresh() */ @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.3K bytes - Click Count (1)