Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for guestPassword (0.17 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

            this.allowGuestFallback = Config.getBoolean(p, "jcifs.smb.client.allowGuestFallback", false);
            this.guestUsername = p.getProperty("jcifs.smb.client.guestUsername", "JCIFSGUEST");
            this.guestPassword = p.getProperty("jcifs.smb.client.guestPassword", "");
    
            String minVer = p.getProperty("jcifs.smb.client.minVersion");
            String maxVer = p.getProperty("jcifs.smb.client.maxVersion");
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean requireSecureNegotiate = true;
        protected boolean sendNTLMTargetName = true;
        private byte[] machineId;
        protected String guestUsername = "GUEST";
        protected String guestPassword = "";
        protected boolean allowGuestFallback = false;
    
    
        /**
         * @throws CIFSException
         * 
         */
        protected BaseConfiguration () throws CIFSException {
            this(false);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to send an AvTargetName with the NTLM exchange
         */
        boolean isSendNTLMTargetName ();
    
    
        /**
         * Property <tt>jcifs.smb.client.guestPassword</tt>, defaults to empty string
         * 
         * @return password used when guest authentication is requested
         */
        String getGuestPassword ();
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top