- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for initDefaults (0.07 sec)
-
src/main/java/jcifs/config/BaseConfiguration.java
this(false); } /** * * @param initDefaults * whether to initialize defaults based on other settings * @throws CIFSException */ public BaseConfiguration ( boolean initDefaults ) throws CIFSException { if ( initDefaults ) { this.initDefaults(); } } @Override public SecureRandom getRandom () {
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/smb1/smb1/NtlmPasswordAuthentication.java
static String DEFAULT_PASSWORD; static final String BLANK = ""; public static final NtlmPasswordAuthentication ANONYMOUS = new NtlmPasswordAuthentication("", "", ""); static void initDefaults() { if (DEFAULT_DOMAIN != null) return; DEFAULT_DOMAIN = Config.getProperty("jcifs.smb1.smb.client.domain", "?"); DEFAULT_USERNAME = Config.getProperty("jcifs.smb1.smb.client.username", "GUEST");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.5K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
} initResolverOrder(p.getProperty("jcifs.resolveOrder")); initDisallowCompound(p.getProperty("jcifs.smb.client.disallowCompound")); initDefaults(); }
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/smb1/smb1/SmbFile.java
addresses = new UniAddress[1]; addresses[0] = UniAddress.getByName( addr.getHostAddress() ); } catch( UnknownHostException uhe ) { NtlmPasswordAuthentication.initDefaults(); if( NtlmPasswordAuthentication.DEFAULT_DOMAIN.equals( "?" )) { throw uhe; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)