Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/smb/Kerb5Authenticator.java

    
        @Override
        public Kerb5Authenticator clone () {
            Kerb5Authenticator auth = new Kerb5Authenticator(getSubject());
            cloneInternal(auth, this);
            return auth;
        }
    
    
        /**
         * Clone the context
         * 
         * @param to
         * @param from
         */
        public static void cloneInternal ( Kerb5Authenticator to, Kerb5Authenticator from ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/KerberosTest.java

        }
    
    
        @Test
        public void testFallback () throws Exception {
            Subject s = getInitiatorSubject(getTestUser(), getTestUserPassword(), getTestUserDomainRequired(), null);
            Kerb5Authenticator auth = new Kerb5Authenticator(s, getTestUserDomainRequired(), getTestUser(), getTestUserPassword());
            auth.setForceFallback(true);
            CIFSContext ctx = getContext().withCredentials(auth);
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K 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
        public void refresh () throws CIFSException {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
Back to top