Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Kerb5Authenticator (0.1 sec)

  1. 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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. 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);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. 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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top