- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for guestPassword (0.14 sec)
-
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");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
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);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
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 (); /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)