- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for withDefaultCredentials (0.13 sec)
-
src/main/java/jcifs/context/CIFSContextWrapper.java
public CIFSContext withCredentials ( Credentials creds ) { return wrap(this.delegate.withCredentials(creds)); } @Override public CIFSContext withDefaultCredentials () { return wrap(this.delegate.withDefaultCredentials()); } @Override public CIFSContext withAnonymousCredentials () { return wrap(this.delegate.withAnonymousCredentials()); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/context/AbstractCIFSContext.java
return withCredentials(new NtlmPasswordAuthenticator()); } /** * {@inheritDoc} * * @see jcifs.CIFSContext#withDefaultCredentials() */ @Override public CIFSContext withDefaultCredentials () { return withCredentials(getDefaultCredentials()); } /** * {@inheritDoc} * * @see jcifs.CIFSContext#withGuestCrendentials()
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
* * Usually you will want to create one context per client configuration and then * multiple sub-contexts using different credentials (if necessary). * * {@link #withDefaultCredentials()}, {@link #withAnonymousCredentials()}, {@link #withCredentials(Credentials)} * allow to create such sub-contexts. * * * Implementors of this interface should extend {@link jcifs.context.BaseContext} or
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0)