Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JAASAuthenticator (0.09 sec)

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

        public Kerb5Authenticator clone() {
            JAASAuthenticator auth = new JAASAuthenticator();
            cloneInternal(auth, this);
            return auth;
        }
    
        /**
         * Clone the context
         *
         * @param to the target authenticator
         * @param from the source authenticator
         */
        protected static void cloneInternal(JAASAuthenticator to, JAASAuthenticator from) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/JAASAuthenticatorTest.java

                return new JAASAuthenticator(new HashMap<String, String>(), "DOM", "user", "pass");
            }
            case DEFAULT_NO_PS:
            default:
                return new JAASAuthenticator();
            }
        }
    
        @Test
        @DisplayName("isAnonymous and isGuest are always false")
        void testIsAnonymousAndGuestFalse() {
            JAASAuthenticator auth = new JAASAuthenticator();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top