- Sort Score
- Result 10 results
- Languages All
Results 11 - 16 of 16 for isAnonymous (0.07 sec)
-
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
* <tt>domain\\username</tt>. This is equivalent to <tt>getName()</tt>. */ @Override public String toString () { return getName(); } @Override public boolean isAnonymous () { return this.type == AuthenticationType.NULL; } @Override public boolean isGuest () { return this.type == AuthenticationType.GUEST; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
} if ( transport.getContext().getConfig().isIpcSigningEnforced() && ( "IPC$".equals(this.getShare()) || "IPC".equals(rsvc) ) && !sess.getCredentials().isAnonymous() && sess.getDigest() == null ) { throw new SmbException("IPC signing is enforced, but no signing is available"); } this.service = rsvc; this.inDfs = response.isShareDfs();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
DfsReferralData referral, SmbAuthException sae ) throws SmbAuthException, CIFSException { try ( SmbSessionImpl treesess = t.getSession() ) { if ( treesess.getCredentials().isAnonymous() || treesess.getCredentials().isGuest() ) { // refresh anonymous session or fallback to anonymous from guest login try ( SmbSessionInternal s = trans
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
NtlmPasswordAuthentication npa = (NtlmPasswordAuthentication) this.transportContext.getCredentials(); String domain = npa.getUserDomain(); String user = !npa.isAnonymous() ? npa.getUsername() : null; String password = npa.getPassword(); String userInfo = this.url.getUserInfo(); if ( userInfo != null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 25.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
tf, dr.getServer(), 0, false, !tf.getCredentials().isAnonymous() && tf.getConfig().isSigningEnabled() && tf.getConfig().isIpcSigningEnforced()) .unwrap(SmbTransportImpl.class); transport.ensureConnected();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
* @see jcifs.smb.SmbResourceLocatorInternal#shouldForceSigning() */ @Override public boolean shouldForceSigning () { return this.ctx.getConfig().isIpcSigningEnforced() && !this.ctx.getCredentials().isAnonymous() && isIPC(); } /** * {@inheritDoc} * * @see jcifs.SmbResourceLocator#isIPC() */ @Override public boolean isIPC () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0)