Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StaticJAASConfiguration (0.23 sec)

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

    import javax.security.auth.login.Configuration;
    
    
    /**
     * @author mbechler
     *
     */
    class StaticJAASConfiguration extends Configuration {
    
        private Map<String, ?> options;
    
    
        /**
         * Initialize a static JAAS configuration with default settings
         */
        public StaticJAASConfiguration () {
            this.options = new HashMap<>();
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/JAASAuthenticator.java

            super(null, domain, username, password);
            this.serviceName = "static";
            this.configuration = new StaticJAASConfiguration(properties);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.Kerb5Authenticator#isAnonymous()
         */
        @Override
        public boolean isAnonymous () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
Back to top