- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for isAllowGuestFallback (0.23 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getGuestPassword(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isAllowGuestFallback() */ @Override public boolean isAllowGuestFallback () { return this.delegate.isAllowGuestFallback(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
pom.xml
</difference> <difference> <className>jcifs/Configuration</className> <differenceType>7012</differenceType> <method>boolean isAllowGuestFallback()</method> </difference> <difference> <className>jcifs/Configuration</className> <differenceType>7012</differenceType> <method>java.lang.String getGuestUsername()</method>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Sep 26 04:40:32 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
throw e; } ex = e; response = sessResponse; } if ( !this.getConfig().isAllowGuestFallback() && response.isLoggedInAsGuest() && ! ( this.credentials.isGuest() || this.credentials.isAnonymous() ) ) { throw new SmbAuthException(NtStatus.NT_STATUS_LOGON_FAILURE);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
CIFSContext ctx = getContext(); ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) { @Override public boolean isAllowGuestFallback () { return true; } }).withCredentials(new NtlmPasswordAuthenticator("invalid", "invalid")); try ( SmbResource f = new SmbFile(getTestShareGuestURL(), ctx) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.guestUsername; } @Override public String getGuestPassword () { return this.guestPassword; } @Override public boolean isAllowGuestFallback () { return this.allowGuestFallback; } @Override public byte[] getMachineId () { return this.machineId; } /** * {@inheritDoc}
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
/** * Property <tt>jcifs.smb.client.allowGuestFallback</tt>, defaults to false * * @return whether to permit guest logins when user authentication is requested */ boolean isAllowGuestFallback ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)