Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for getBoolean (0.08 sec)

  1. src/main/java/jcifs/smb1/http/NtlmServlet.java

            domainController = Config.getProperty("jcifs.smb1.http.domainController");
            if (domainController == null) {
                domainController = defaultDomain;
                loadBalance = Config.getBoolean("jcifs.smb1.http.loadBalance", true);
            }
            enableBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.enableBasic"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NetworkExplorer.java

                } catch (final IOException ioe) {
                    throw new ServletException(ioe.getMessage());
                }
    
                this.enableBasic = Config.getBoolean(p, "jcifs.http.enableBasic", false);
                this.insecureBasic = Config.getBoolean(p, "jcifs.http.insecureBasic", false);
                this.realm = p.getProperty("jcifs.http.basicRealm");
                if (this.realm == null) {
                    this.realm = "jCIFS";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                style = sb.toString();
            } catch (final IOException ioe) {
                throw new ServletException(ioe.getMessage());
            }
    
            enableBasic = Config.getBoolean("jcifs.smb1.http.enableBasic", false);
            insecureBasic = Config.getBoolean("jcifs.smb1.http.insecureBasic", false);
            realm = Config.getProperty("jcifs.smb1.http.basicRealm");
            if (realm == null) {
                realm = "jCIFS";
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

            domainController = Config.getProperty("jcifs.smb1.http.domainController");
            if (domainController == null) {
                domainController = defaultDomain;
                loadBalance = Config.getBoolean("jcifs.smb1.http.loadBalance", true);
            }
            enableBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.enableBasic"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Config.java

         * @param key the property key to look up
         * @param def the default value to return if key is not found
         * @return the boolean value of the property or the default value
         */
        public static boolean getBoolean(final Properties props, final String key, boolean def) {
            final String b = props.getProperty(key);
            if (b != null) {
                def = b.toLowerCase().equals("true");
            }
            return def;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/Config.java

         * @param def the default value to return if the property is not found
         * @return the property value as a boolean, or the default value
         */
    
        public static boolean getBoolean(final String key, boolean def) {
            final String b = getProperty(key);
            if (b != null) {
                def = b.toLowerCase().equals("true");
            }
            return def;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

        private String target;
    
        private byte[] context;
    
        private byte[] targetInformation;
    
        static {
            DEFAULT_FLAGS = NTLMSSP_NEGOTIATE_NTLM
                    | (Config.getBoolean("jcifs.smb1.smb.client.useUnicode", true) ? NTLMSSP_NEGOTIATE_UNICODE : NTLMSSP_NEGOTIATE_OEM);
            DEFAULT_DOMAIN = Config.getProperty("jcifs.smb1.smb.client.domain", null);
            byte[] domain = {};
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NtlmHttpFilter.java

                if (this.domainController == null) {
                    this.domainController = this.defaultDomain;
                    this.loadBalance = Config.getBoolean(p, "jcifs.http.loadBalance", true);
                }
                this.enableBasic = Boolean.parseBoolean(p.getProperty("jcifs.http.enableBasic"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        private String workstation;
    
        private byte[] masterKey = null;
        private byte[] sessionKey = null;
    
        static {
            DEFAULT_FLAGS = NTLMSSP_NEGOTIATE_NTLM
                    | (Config.getBoolean("jcifs.smb1.smb.client.useUnicode", true) ? NTLMSSP_NEGOTIATE_UNICODE : NTLMSSP_NEGOTIATE_OEM);
            DEFAULT_DOMAIN = Config.getProperty("jcifs.smb1.smb.client.domain", null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
            attrExpirationPeriod = Config.getLong("jcifs.smb1.smb.client.attrExpirationPeriod", DEFAULT_ATTR_EXPIRATION_PERIOD);
            ignoreCopyToException = Config.getBoolean("jcifs.smb1.smb.client.ignoreCopyToException", true);
            dfs = new Dfs();
        }
    
        /**
         * Returned by {@link #getType()} if the resource this {@code SmbFile}
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top