- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getGuestUsername (0.11 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getMachineId(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getGuestUsername() */ @Override public String getGuestUsername () { return this.delegate.getGuestUsername(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getGuestPassword() */ @Override
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>java.lang.String getGuestUsername()</method> </difference> <difference> <className>jcifs/Configuration</className> <differenceType>7012</differenceType> <method>java.lang.String getGuestPassword()</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/NtlmContext.java
this.auth.isGuest() ? null : this.auth.getUserDomain(), this.auth.isGuest() ? this.transportContext.getConfig().getGuestUsername() : this.auth.getUsername(), this.workstation, this.ntlmsspFlags, this.auth.isGuest() || !this.auth.isAnonymous()); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
CIFSContext ctx = getContext(); ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) { @Override public String getGuestUsername () { return "jcifs-guest"; } }).withGuestCrendentials(); try ( SmbResource f = new SmbFile(getTestShareGuestURL(), ctx) ) { checkConnection(f);
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
} @Override public boolean isSendNTLMTargetName () { return this.sendNTLMTargetName; } @Override public String getGuestUsername () { return this.guestUsername; } @Override public String getGuestPassword () { return this.guestPassword; } @Override
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.guestUsername</tt>, defaults to GUEST * * @return username used when guest authentication is requested */ String getGuestUsername (); /** * Property <tt>jcifs.smb.client.allowGuestFallback</tt>, defaults to false * * @return whether to permit guest logins when user authentication is requested */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)